From 695cff5a560da640381e703ac2c04d9fa4f8ee4b Mon Sep 17 00:00:00 2001 From: vChabot Date: Thu, 15 Mar 2012 13:54:35 +0000 Subject: [PATCH] // little fix when add category git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14196 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Category.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Category.php b/classes/Category.php index 0c51eae10..82e6bf770 100644 --- a/classes/Category.php +++ b/classes/Category.php @@ -1102,7 +1102,7 @@ class CategoryCore extends ObjectModel if ($list && !empty($list)) $this->addGroups($list); else - $this->addGroups(array(Configuration::get('PS_CUSTOMER_GROUP'))); + $this->addGroups(array(Configuration::get('PS_UNIDENTIFIED_GROUP'), Configuration::get('PS_GUEST_GROUP'), Configuration::get('PS_CUSTOMER_GROUP'))); } public static function setNewGroupForHome($id_group)