2008-07-17 Evi Vanoost <vanooste@rcbi.rochester.edu>
* pandora_console/include/functions_reporting.php: Latest commit forgot a semicolon after return which resulted in an error on the front page. Fixed. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@965 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
06f095f3e6
commit
2d0db78bdf
|
@ -1,3 +1,7 @@
|
|||
2008-07-21 Evi Vanoost <vanooste@rcbi.rochester.edu>
|
||||
|
||||
* include/functions_reporting.php: Last commit forgot a semicolon. Fixed.
|
||||
|
||||
2008-07-21 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* godmode/reporting/graph_builder.php,
|
||||
|
|
|
@ -529,7 +529,7 @@ function get_agent_monitors_reporting_table ($id_agent, $period = 0, $date = 0)
|
|||
$monitors = get_monitors_in_agent ($id_agent);
|
||||
|
||||
if ($monitors === false) {
|
||||
return $table
|
||||
return $table;
|
||||
}
|
||||
foreach ($monitors as $monitor) {
|
||||
$downs = get_monitor_downs_in_period ($monitor['id_agente_modulo'], $period, $date);
|
||||
|
|
Loading…
Reference in New Issue