// Fixed alias

This commit is contained in:
dMetzger
2012-08-23 15:24:20 +00:00
parent fe70a22bab
commit 8e13e97bfd
@@ -201,7 +201,10 @@ class AdminCategoriesControllerCore extends AdminController
public function getList($id_lang, $order_by = null, $order_way = null, $start = 0, $limit = null, $id_lang_shop = false)
{
parent::getList($id_lang, 'sa.position', $order_way, $start, $limit, Context::getContext()->shop->id);
$alias = 'a';
if (Shop::isFeatureActive())
$alias = 'sa';
parent::getList($id_lang, $alias.'.position', $order_way, $start, $limit, Context::getContext()->shop->id);
// Check each row to see if there are combinations and get the correct action in consequence
$nb_items = count($this->_list);