2007-07-13 Sancho Lerena <slerena@artica.es>
* 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
This commit is contained in:
parent
380352d7dc
commit
73a1ebcf96
|
@ -1,5 +1,10 @@
|
|||
2007-07-13 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* 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
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 804 B |
|
@ -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 "<h3>".$lang_label["monitor_listing"]."<a href='help/".$help_code."/chap3.php#3323' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h3>";
|
||||
|
|
Loading…
Reference in New Issue