diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 26a6bba414..4bc1df80a0 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -416,12 +416,6 @@ $table->head[8] = __('Last contact'). ' ' . $table->align = array (); -//Only for AW flag -if (check_acl ($config["id_user"], $group_id, "AW")) { - $table->head[9] = __('R'); - $table->align[9] = "center"; -} - $table->align[2] = "center"; $table->align[3] = "center"; $table->align[4] = "center"; @@ -500,25 +494,6 @@ foreach ($agents as $agent) { // And does not print outdated agents in red. WRONG !!!! // $data[7] = ui_print_timestamp ($agent_info["last_contact"], true); - //Only for AW flag - if (check_acl ($config["id_user"], $group_id, "AW")) { - // Has remote configuration ? - $data[9]=""; - - if (enterprise_installed()) { - if (config_agents_has_remote_configuration($agent["id_agente"])) { - $data[9] = "". - html_print_image("images/application_edit.png", true, array("align" => 'middle', "title" => __('Edit remote config'))).""; - } - } - - } - array_push ($table->data, $data); }