// Fix bug controller AdminCategoriesController (PSFV-94)

This commit is contained in:
lLefevre
2011-11-03 10:24:31 +00:00
parent cc815821ce
commit b39c8e73ab
2 changed files with 17 additions and 16 deletions
@@ -98,7 +98,7 @@ class AdminCategoriesControllerCore extends AdminController
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
$this->_filter .= 'AND `id_parent` = '.(int)$this->_category->id;
$this->_filter .= 'AND `id_parent` = '.(int)$this->_category->id.' ';
$this->_select = 'position ';
$categories_tree = $this->_category->getParentsCategories($this->context->language->id);
@@ -124,7 +124,7 @@ class AdminCategoriesControllerCore extends AdminController
public function initView()
{
$this->initToolbar();
$this->content .= $this->initList();
return $this->initList();
}
public function initToolbar()