From f008bfb5d5d4cfaa3dce15228d9e00d128ea3938 Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Fri, 3 Feb 2012 14:13:14 +0000 Subject: [PATCH] [-] BO : #PSTEST-627 - Fix bug with bad order by git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12976 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminTrackingController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/controllers/admin/AdminTrackingController.php b/controllers/admin/AdminTrackingController.php index 8df64d18a..7aab145ce 100644 --- a/controllers/admin/AdminTrackingController.php +++ b/controllers/admin/AdminTrackingController.php @@ -73,6 +73,7 @@ class AdminTrackingControllerCore extends AdminController $this->_orderWay = 'DESC'; self::$currentIndex = 'index.php?controller=AdminCategories'; $this->token = Tools::getAdminTokenLite('AdminCategories'); + $this->_orderBy = null; $this->addRowAction('edit'); $this->addRowAction('delete'); @@ -108,6 +109,7 @@ class AdminTrackingControllerCore extends AdminController self::$currentIndex = 'index.php?controller=AdminProducts'; $this->token = Tools::getAdminTokenLite('AdminProducts'); $this->show_toolbar = false; + $this->_orderBy = null; $this->addRowAction('edit'); $this->addRowAction('delete'); @@ -146,6 +148,7 @@ class AdminTrackingControllerCore extends AdminController $this->show_toolbar = false; self::$currentIndex = 'index.php?controller=AdminProducts'; $this->token = Tools::getAdminTokenLite('AdminProducts'); + $this->_orderBy = null; $this->addRowAction('edit'); $this->addRowAction('delete'); @@ -187,6 +190,7 @@ class AdminTrackingControllerCore extends AdminController $this->show_toolbar = false; self::$currentIndex = 'index.php?controller=AdminProducts'; $this->token = Tools::getAdminTokenLite('AdminProducts'); + $this->_orderBy = null; $this->addRowAction('edit'); $this->addRowAction('delete');