// fix bug position in AdminFeaturesController

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10139 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-11-15 15:43:11 +00:00
parent 764ccc45a3
commit 2faf5b2f34
@@ -156,7 +156,9 @@ class AdminFeaturesControllerCore extends AdminController
{
if ($order_by && $this->context->cookie->__get($this->table.'Orderby'))
$order_by = $this->context->cookie->__get($this->table.'Orderby');
else if (!is_null($order_by))
else if (is_null($order_by))
$order_by = null;
else
$order_by = 'position';
parent::getList($id_lang, $order_by, $order_way, $start, $limit, $id_lang_shop);