From 92a56d34dfd74600c40e2d2f12706fd63f613f8e Mon Sep 17 00:00:00 2001 From: vChabot Date: Sat, 19 May 2012 10:16:24 +0000 Subject: [PATCH] [-] BO : BugFix : Creating a category in multishop updates her position as well git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15417 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Category.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/classes/Category.php b/classes/Category.php index c5371778a..a2d94263c 100644 --- a/classes/Category.php +++ b/classes/Category.php @@ -156,13 +156,10 @@ class CategoryCore extends ObjectModel $this->level_depth = $this->calcLevelDepth(); $ret = parent::add($autodate, $null_values); if (Tools::isSubmit('checkBoxShopAsso_category')) - foreach (Tools::getValue('checkBoxShopAsso_category') as $row) + foreach (Tools::getValue('checkBoxShopAsso_category') as $id_shop => $value) { - foreach ($row as $id_shop => $value) - { - $position = Category::getLastPosition((int)$this->id_parent, $id_shop); - $this->addPosition($position, $id_shop); - } + $position = Category::getLastPosition((int)$this->id_parent, $id_shop); + $this->addPosition($position, $id_shop); } else foreach (Shop::getShops(true) as $shop)