Changed the order of actions
Former-commit-id: ec733bfcf1705552f6257dc14c5a34e0a3e84e66
This commit is contained in:
parent
f1dbd40a6a
commit
e8497bb80c
|
@ -55,9 +55,9 @@ else {
|
||||||
}
|
}
|
||||||
|
|
||||||
$options_modules = array(
|
$options_modules = array(
|
||||||
'delete_modules' => __('Bulk module delete'),
|
|
||||||
'edit_modules' => __('Bulk module edit'),
|
'edit_modules' => __('Bulk module edit'),
|
||||||
'copy_modules' => __('Bulk module copy'));
|
'copy_modules' => __('Bulk module copy'),
|
||||||
|
'delete_modules' => __('Bulk module delete'));
|
||||||
|
|
||||||
$options_plugins = array(
|
$options_plugins = array(
|
||||||
'edit_plugins' => __('Bulk plugin edit')
|
'edit_plugins' => __('Bulk plugin edit')
|
||||||
|
@ -77,7 +77,7 @@ if ($policies_options != ENTERPRISE_NOT_HOOK) {
|
||||||
|
|
||||||
$options_snmp = array();
|
$options_snmp = array();
|
||||||
$snmp_options = enterprise_hook('massive_snmp_options');
|
$snmp_options = enterprise_hook('massive_snmp_options');
|
||||||
|
$snmp_options = array_reverse($snmp_options);
|
||||||
if ($snmp_options != ENTERPRISE_NOT_HOOK) {
|
if ($snmp_options != ENTERPRISE_NOT_HOOK) {
|
||||||
$options_snmp =
|
$options_snmp =
|
||||||
array_merge($options_snmp, $snmp_options);
|
array_merge($options_snmp, $snmp_options);
|
||||||
|
|
Loading…
Reference in New Issue