diff --git a/admin-dev/themes/default/template/helpers/list/list_footer.tpl b/admin-dev/themes/default/template/helpers/list/list_footer.tpl index cf72cb044..b4fc2a1e5 100644 --- a/admin-dev/themes/default/template/helpers/list/list_footer.tpl +++ b/admin-dev/themes/default/template/helpers/list/list_footer.tpl @@ -25,11 +25,21 @@ {if $bulk_actions} -

+

+ + +
{/if} {if !$simple_header && $list_total > 20} diff --git a/controllers/admin/AdminSuppliersController.php b/controllers/admin/AdminSuppliersController.php index 6958d44f8..5095c37eb 100644 --- a/controllers/admin/AdminSuppliersController.php +++ b/controllers/admin/AdminSuppliersController.php @@ -38,7 +38,13 @@ class AdminSuppliersControllerCore extends AdminController $this->addRowAction('delete'); $this->allow_export = true; - $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'), + 'icon' => $this->l('icon-trash'), + 'confirm' => $this->l('Delete selected items?') + ) + ); $this->_select = 'COUNT(DISTINCT ps.`id_product`) AS products'; $this->_join = 'LEFT JOIN `'._DB_PREFIX_.'product_supplier` ps ON (a.`id_supplier` = ps.`id_supplier`)';