diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index bee4170654..c4fcb4496a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,5 +1,10 @@ 2007-07-13 Sancho Lerena + * img/so_other.png: Fixed image. + + * estado_monitores.php: Not shown only initialized monitor data, + those whose utimestamp is zero, skipped (created but never used). + * pandora_console/godmode/agentes/configurar_agente.php: Fixed problem when creating manually an agent: does not create IP address in tadress table, so Recon Server create again system with diff --git a/pandora_console/images/so_other.png b/pandora_console/images/so_other.png index 5ca9f009ce..da3a79e6f1 100644 Binary files a/pandora_console/images/so_other.png and b/pandora_console/images/so_other.png differ diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index 3900cafccf..820c534594 100644 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -24,7 +24,7 @@ if (comprueba_login() == 0) { $id_agente = $_GET["id_agente"]; } // Get all module from agent - $sql_t='SELECT * FROM tagente_estado, tagente_modulo WHERE tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.id_agente='.$id_agente.' and tagente_estado.estado != 100 order by tagente_modulo.nombre'; + $sql_t='SELECT * FROM tagente_estado, tagente_modulo WHERE tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_estado.utimestamp != 0 AND tagente_modulo.id_agente='.$id_agente.' AND tagente_estado.estado != 100 order by tagente_modulo.nombre'; $result_t=mysql_query($sql_t); if (mysql_num_rows ($result_t)) { echo "

".$lang_label["monitor_listing"]." ".$lang_label["help"]."

";