Changed the order of actions

Former-commit-id: ec733bfcf1705552f6257dc14c5a34e0a3e84e66
This commit is contained in:
manuel.montes 2019-01-22 11:03:52 +01:00
parent f1dbd40a6a
commit e8497bb80c
1 changed files with 3 additions and 3 deletions

View File

@ -55,9 +55,9 @@ else {
}
$options_modules = array(
'delete_modules' => __('Bulk module delete'),
'edit_modules' => __('Bulk module edit'),
'copy_modules' => __('Bulk module copy'));
'copy_modules' => __('Bulk module copy'),
'delete_modules' => __('Bulk module delete'));
$options_plugins = array(
'edit_plugins' => __('Bulk plugin edit')
@ -77,7 +77,7 @@ if ($policies_options != ENTERPRISE_NOT_HOOK) {
$options_snmp = array();
$snmp_options = enterprise_hook('massive_snmp_options');
$snmp_options = array_reverse($snmp_options);
if ($snmp_options != ENTERPRISE_NOT_HOOK) {
$options_snmp =
array_merge($options_snmp, $snmp_options);