From 01bb408766e3cd8dd92768919f938462fa96abf9 Mon Sep 17 00:00:00 2001 From: aNiassy Date: Tue, 11 Oct 2011 09:21:21 +0000 Subject: [PATCH] [-] BO #PSFV-87 : modified a treatment because in php version 5.3 instructions like "$helper::" are forbidden git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9212 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/AdminController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/AdminController.php b/classes/AdminController.php index 270bfe71e..60dd05e94 100644 --- a/classes/AdminController.php +++ b/classes/AdminController.php @@ -914,7 +914,7 @@ class AdminControllerCore extends Controller $helper->delete = $this->delete; $helper->duplicate = $this->duplicate; $helper->bulk_actions = $this->bulk_actions; - $helper::$currentIndex = self::$currentIndex; + HelperList::$currentIndex = self::$currentIndex; $helper->className = $this->className; $helper->table = $this->table; $helper->shopLink = $this->shopLink;