// Removing first confirm message on deleting a category

This commit is contained in:
mDeflotte
2012-01-24 09:05:31 +00:00
parent 44aa7f8ee5
commit e7e75b112c
4 changed files with 30 additions and 13 deletions
@@ -34,9 +34,9 @@ class AdminCategoriesControllerCore extends AdminController
public function __construct()
{
$this->table = 'category';
$this->table = 'category';
$this->className = 'Category';
$this->lang = true;
$this->lang = true;
$this->deleted = false;
$this->context = Context::getContext();
@@ -80,8 +80,9 @@ class AdminCategoriesControllerCore extends AdminController
)
);
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected')));
$this->specificConfirmDelete = false;
parent::__construct();
}