// fix bug in bulk_actions of type "delete" in AdminController's

This commit is contained in:
lLefevre
2011-11-30 15:24:50 +00:00
parent f2e81e4dc9
commit c97ee6e2f9
17 changed files with 30 additions and 53 deletions
+2 -1
View File
@@ -44,6 +44,8 @@ class AdminBackupControllerCore extends AdminController
'filesize' => array('title' => $this->l('File size'))
);
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
$this->options = array(
'general' => array(
'title' => $this->l('Backup options'),
@@ -73,7 +75,6 @@ class AdminBackupControllerCore extends AdminController
{
$this->addRowAction('view');
$this->addRowAction('delete');
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
return parent::renderList();
}