// Removing first confirm message on deleting a category

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12631 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-01-24 09:05:31 +00:00
parent b63e0b46c9
commit 249e23bb86
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();
}