Skip to content

Commit

Permalink
Merge pull request #486 from jameswithers/master
Browse files Browse the repository at this point in the history
Check for category position before preparing for database insertion
  • Loading branch information
dweeves authored Sep 19, 2016
2 parents e37c1a1 + aa2058a commit 6b15f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magmi/engines/magmi_productimportengine.php
Original file line number Diff line number Diff line change
Expand Up @@ -1880,7 +1880,7 @@ public function assignCategories($pid, $item)
$inserts[] = "(?,?,?)";
$data[] = $catid;
$data[] = $pid;
$data[] = $catpos;
$data[] = (int)$catpos;
}
}

Expand Down

0 comments on commit 6b15f13

Please sign in to comment.