From 192738ae56e40a0e1c6be15eeb162eb9d74632a6 Mon Sep 17 00:00:00 2001 From: vChabot Date: Wed, 2 May 2012 08:41:13 +0000 Subject: [PATCH] [-] BO : BugFix : #PSCFV-2133 : AdminTracking bug in multishop context (ambigus active field in SQL query) git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14990 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminTrackingController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/admin/AdminTrackingController.php b/controllers/admin/AdminTrackingController.php index 4a85a1563..8410c1e6d 100644 --- a/controllers/admin/AdminTrackingController.php +++ b/controllers/admin/AdminTrackingController.php @@ -191,7 +191,7 @@ class AdminTrackingControllerCore extends AdminController $this->identifier = 'id_product'; $this->_orderBy = 'id_product'; $this->_orderWay = 'DESC'; - $this->_filter = 'AND active = 0'; + $this->_filter = 'AND a.`active` = 0'; $this->list_no_filter = true; $this->tpl_list_vars = array('sub_title' => $this->l('List of disabled products:')); $this->show_toolbar = false;