From d4dfab892f98f2e5f793b237905617d13d92ecdb Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Fri, 14 Oct 2011 14:01:36 +0000 Subject: [PATCH] // Normalization + Fix bug with uncorrect attribute call git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9367 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminGroupShopController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/controllers/admin/AdminGroupShopController.php b/controllers/admin/AdminGroupShopController.php index cc7f5fdd0..19f47ee6c 100644 --- a/controllers/admin/AdminGroupShopController.php +++ b/controllers/admin/AdminGroupShopController.php @@ -29,10 +29,10 @@ class AdminGroupShopControllerCore extends AdminController { public function __construct() { - $this->table = 'group_shop'; + $this->table = 'group_shop'; $this->className = 'GroupShop'; - $this->lang = false; - $this->edit = true; + $this->lang = false; + $this->edit = true; $this->delete = false; $this->requiredDatabase = true; @@ -240,7 +240,7 @@ class AdminGroupShopControllerCore extends AdminController // Check if form template has been overriden if (file_exists($this->context->smarty->template_dir.'/'.$this->tpl_folder.'form_import.tpl')) $helper->tpl = $this->tpl_folder.'form_import.tpl'; - $helper::$currentIndex = self::$currentIndex; + HelperForm::$currentIndex = self::$currentIndex; $helper->token = $this->token; $helper->table = $this->table; $helper->id = $obj->id;