Merge pull request #837 from axometeam/patch-21

[-] BO : bad query when filtering on status + sorting by quantity in the AdminProducts getList
This commit is contained in:
Gregory Roussac
2013-10-14 07:45:52 -07:00
+2 -2
View File
@@ -2284,7 +2284,7 @@ class AdminControllerCore extends Controller
(isset($this->_filter) ? $this->_filter : '').$where_shop.'
'.(isset($this->_group) ? $this->_group.' ' : '').'
'.$having_clause.'
ORDER BY '.(($order_by == $this->identifier) ? 'a.' : '').pSQL($order_by).' '.pSQL($order_way).
ORDER BY '.(($order_by == $this->identifier || $order_by == 'quantity') ? 'a.' : '').pSQL($order_by).' '.pSQL($order_way).
($this->_tmpTableFilter ? ') tmpTable WHERE 1'.$this->_tmpTableFilter : '').
(($use_limit === true) ? ' LIMIT '.(int)$start.','.(int)$limit : '');
@@ -3042,4 +3042,4 @@ class AdminControllerCore extends Controller
return $return;
}
}
}