Skip to content

Commit

Permalink
fix(linker): inverted arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Aug 22, 2019
1 parent b466d34 commit 0592792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/linker.class.php
Expand Up @@ -102,7 +102,7 @@ public function linkPostponed() {
$postponedCount += count($postponedItemtypeList);
$newList = $postponedItemtypeList;
foreach ($postponedItemtypeList as $originalId => $postponedItem) {
if ($itemtype::import($this, $postponedItem['relationId'], $postponedItem['input']) === false) {
if ($itemtype::import($this, $postponedItem['input'], $postponedItem['relationId']) === false) {
$newList[$originalId] = $postponedItem;
$postponedAgainCount++;
}
Expand Down

0 comments on commit 0592792

Please sign in to comment.