2009-04-24 Manuel Arostegui <marostegui@artica.es>

* operation/agentes/status_monitor.php: Fixed bug #2779382



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1654 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
marostegui 2009-04-24 09:19:35 +00:00
parent aeaa609450
commit e654b051a5
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-04-24 Manuel Arostegui <marostegui@artica.es>
* operation/agentes/status_monitor.php: Fixed bug #2779382
2009-04-24 Esteban Sánchez <estebans@artica.es>
* extras/pandoradb_migrate_v2.x_to_v3.0.sql: Removed local components table

View File

@ -229,9 +229,9 @@ foreach ($result as $row) {
$data[2] = '<img src="images/'.show_icon_type ($row["module_type"]).'" border="0" />';
$data[3] = substr ($row["module_name"], 0, 30);
$data[4] = $row["agent_interval"];
$data[4] = ($row['module_interval'] == 0) ? $row['agent_interval'] : $row['module_interval'];
if ($row["estado"] == 0) {
$data[5] = print_status_image(STATUS_MODULE_OK, $row["datos"], true);
} elseif ($row["estado"] == 1) {