From 0a960ed14e0ff64620742efd89e284bbceebe249 Mon Sep 17 00:00:00 2001 From: slerena Date: Fri, 13 Jul 2007 11:17:30 +0000 Subject: [PATCH] 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). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@562 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/images/so_other.png | Bin 307 -> 804 bytes .../operation/agentes/estado_monitores.php | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) 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 5ca9f009ceb3e130c4118099c9d227380d25d8f8..da3a79e6f15f40e807d8da190b1af2495bc0468e 100644 GIT binary patch delta 792 zcmV+z1Lyp+0;C3z8Gi!+003bSeq{gv0ijS#R7C&)1o!aq{Qds?{{Q&&^QS8os4f|& zE*hvW8>cTDsxlp^F&(Qj9;h)Lsxls{G#{!nAF4DUt2H64HX^JyBC9qctT!X8HzTY# zB&;|ktT`pDIVP++C(MO;&4zl+hI-<-vE{zELJ}#<0FRef@ ztUxiUKQO95F{?o`twJ-bLp82PIj=}Mut__xOFXbkJ+xIwxnoznXIsR2Z_9;x&4_)h zK{KpEG^<8Cvwu-Uu1!L;R!X#2OSM{0wp&oPT~fDSRkmJKwO>}aW?i^vUbkjlylP>) zYhu4}X2N)H!FzMmoR!m`nbxSIsYX1hM?I-XKDAy}v|d)YW?s5!VZ3l@!+dqbes{}{ ziqfB((Vm*qqMp;EpVz3Q*|DwNx3u59x!t?C;=#V*z<<5=?CapZyyeQs?c3V%;o#%P z#_ikN@893~^78oc@%r@i`111j^Yi=o`2G9)|NsB@@9-JGibDVZ00DGTPE!Ct=GbNc z0004EOGiWihy@);00009a7bBm000XU000XU0RWnu7ytkO2XskIMF-ah4GJv_Im(1f z0002|Nq=x8Aw5d1hX4EA)wxmA1tKntZ!M^3KZx{ zvN!gT1PO6?R|Kg9R<@V;D+iZn@qvWcnCBTADaOjb8L*z`!6zTwcpP&CFo%^ejWF phcW{Lg8;$2#vEwTa(ZwTBLI$_PU{4;BGLc=002ovPDHLkV1nzuiW2|; 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"]."

";