Skip to content

Commit

Permalink
ilObjTaxonomy::cloneNodes(): Argument #2 ($a_target_parent) must be o…
Browse files Browse the repository at this point in the history
…f type int, string given
  • Loading branch information
mbecker-databay committed Feb 1, 2023
1 parent d2f6781 commit 8d036a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ private function duplicateTaxonomyFromPoolToTest($poolTaxonomyId): void

$poolTaxonomy->cloneNodes(
$testTaxonomy,
(string) $testTaxonomy->getTree()->readRootId(),
(string) $poolTaxonomy->getTree()->readRootId()
$testTaxonomy->getTree()->readRootId(),
$poolTaxonomy->getTree()->readRootId()
);

$testTaxonomy->update();
Expand Down

0 comments on commit 8d036a7

Please sign in to comment.