diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 32380caade..afdaeff89e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2012-04-18 Dario Rodriguez + + * godmode/agentes/agent_manager.php: Fixed a problem with links + and new menu strcuture. + + MERGED FROM 4.0.2 + 2012-04-18 Dario Rodriguez * godmode/agentes/agent_disk_conf_editor.php: Print message diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index ebcf6cff93..bf50ef5ea6 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -170,7 +170,7 @@ if ($disk_conf_delete) { @unlink ($filename['conf']); } -echo '
'; +echo ''; $table->width = '98%'; $table->class = "databox_color"; @@ -195,7 +195,7 @@ if ($id_agente) { // Remote configuration available if (!$new_agent) { if (file_exists ($filename['md5'])) { - $table->data[0][1] .= '  '; + $table->data[0][1] .= '  '; $table->data[0][1] .= html_print_image ("images/application_edit.png", true, array ("border" => 0, "title" => __('This agent can be remotely configured'))); $table->data[0][1] .= ''.ui_print_help_tip (__('You can remotely edit this agent configuration'), true); } @@ -203,7 +203,7 @@ if (!$new_agent) { // Delete link from here if (!$new_agent) { -$table->data[0][1] .= "  "; +$table->data[0][1] .= "  "; } $table->data[1][0] = __('IP Address'); @@ -288,7 +288,7 @@ if (!$new_agent) { if (file_exists ($filename['md5'])) { $table->data[3][1] = date ("F d Y H:i:s", fileatime ($filename['md5'])); // Delete remote configuration - $table->data[3][1] .= ''; + $table->data[3][1] .= ''; $table->data[3][1] .= html_print_image ("images/cross.png", true, array ('title' => __('Delete remote configuration file'), 'style' => 'vertical-align: middle;')).''; $table->data[3][1] .= ''.ui_print_help_tip (__('Delete this conf file implies that for restore you must reactive remote config in the local agent.'), true); }