Skip to content

Commit

Permalink
Fixing missing arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
snake14 committed Nov 19, 2024
1 parent 857f4a1 commit 5d425ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ public function copyTag()
$idTag = $request->getIntegerParameter('idTag');
$idContainerVersion = $request->getIntegerParameter('idContainerVersion');

$idTagNew = StaticContainer::get(Tag::class)->copyTag($this->idSite, $idContainerVersion, $idTag);
$idTagNew = StaticContainer::get(Tag::class)->copyTag($this->idSite, $idContainerVersion, $idTag, $idDestinationSite, $idDestinationContainer);

$url = 'index.php?module=TagManager&action=manageTags&'
. Url::getQueryStringFromParameters([
Expand Down

0 comments on commit 5d425ec

Please sign in to comment.