diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 0546647846..c4163611a2 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -259,7 +259,6 @@ if ($access_console_node === true) { if ((bool) check_acl($config['id_user'], 0, 'LW') === true || (bool) check_acl($config['id_user'], 0, 'LM') === true - || (bool) check_acl($config['id_user'], 0, 'AD') === true ) { $menu_godmode['galertas']['text'] = __('Alerts'); $menu_godmode['galertas']['sec2'] = 'godmode/alerts/alert_list'; diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 8c251903af..b3c69730f3 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -271,29 +271,27 @@ if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) che } } -if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) { - array_push( - $column_names, - ['text' => 'Module'], - ['text' => 'Template'], - [ - 'title' => __('Action'), - 'text' => __('Action'), - 'style' => 'min-width: 15%;', - ], - ['text' => 'Last fired'], - ['text' => 'Status'] - ); +array_push( + $column_names, + ['text' => 'Module'], + ['text' => 'Template'], + [ + 'title' => __('Action'), + 'text' => __('Action'), + 'style' => 'min-width: 15%;', + ], + ['text' => 'Last fired'], + ['text' => 'Status'] +); - $columns = array_merge( - $columns, - ['agent_module_name'], - ['template_name'], - ['action'], - ['last_fired'], - ['status'] - ); -} +$columns = array_merge( + $columns, + ['agent_module_name'], + ['template_name'], + ['action'], + ['last_fired'], + ['status'] +); if (is_metaconsole() === false) { if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) {