From 92e91afc012730c32a7bb15dd65552a26e155fd2 Mon Sep 17 00:00:00 2001 From: vChabot Date: Wed, 16 May 2012 14:11:20 +0000 Subject: [PATCH] [-] BO : BugFix : #PSCFV-2343 : Group discount does not show associated categories properly git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15344 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminGroupsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/admin/AdminGroupsController.php b/controllers/admin/AdminGroupsController.php index 17c44fe80..e5bebd0d3 100644 --- a/controllers/admin/AdminGroupsController.php +++ b/controllers/admin/AdminGroupsController.php @@ -273,7 +273,7 @@ class AdminGroupsControllerCore extends AdminController $this->fields_value['reduction'] = isset($group->reduction) ? $group->reduction : 0; $helper = new Helper(); - $this->tpl_form_vars['categoryTreeView'] = $helper->renderCategoryTree(null, array(), 'id_category', true, false, array(), true); + $this->tpl_form_vars['categoryTreeView'] = $helper->renderCategoryTree(null, array(), 'id_category', true, false, array(), true, true); return parent::renderForm(); }