[-] BO: Fix auto-selection of default category when you have choosen one on the listing

This commit is contained in:
Rémi Gaillard
2013-03-14 15:04:54 +01:00
parent c7a4c4d84d
commit 8b4bd8e471
@@ -2795,8 +2795,7 @@ class AdminProductsControllerCore extends AdminController
$data = $this->createTemplate($this->tpl_form);
// Prepare Categories tree for display in Associations tab
$root = Category::getRootCategory();
$default_category = Tools::getValue('id_category', Context::getContext()->shop->id_category);
$default_category = $this->context->cookie->id_category_products_filter ? $this->context->cookie->id_category_products_filter : Context::getContext()->shop->id_category;
if (!$product->id || !$product->isAssociatedToShop())
$selected_cat = Category::getCategoryInformations(Tools::getValue('categoryBox', array($default_category)), $this->default_form_language);
else