From 1895c5a16d70ff8b61e67ef20d8553a883119567 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 4 Nov 2010 18:18:58 +0000 Subject: [PATCH] 2010-11-04 Miguel de Dios * include/functions_reporting.php: fixed warning in foreach loop. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3527 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ pandora_console/include/functions_reporting.php | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index e1375a2a15..9b9c67731c 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2010-11-04 Miguel de Dios + + * include/functions_reporting.php: fixed warning in foreach loop. + 2010-11-04 Sergio Martin * operation/incidents/incident.php: Fixed incidents filter diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index dc6edee059..f97f28c4e7 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -791,6 +791,9 @@ function alert_reporting_agent ($id_agent, $period = 0, $date = 0, $return = tru if (isset($alerts['simple'])) { $i = 0; + if ($alerts['simple'] === false) + $alerts['simple'] = array(); + foreach ($alerts['simple'] as $alert) { $data = array(); $data[0] = get_db_value_filter('nombre', 'tagente_modulo', array('id_agente_modulo' => $alert['id_agent_module'])); @@ -804,6 +807,10 @@ function alert_reporting_agent ($id_agent, $period = 0, $date = 0, $return = tru if ($actions === false) { $actions = array(); } + + if ($actions === false) + $actions = array(); + foreach ($actions as $action) { $data[2] .= '
  • ' . $action['name'] . '
  • '; } @@ -814,6 +821,10 @@ function alert_reporting_agent ($id_agent, $period = 0, $date = 0, $return = tru if ($firedTimes === false) { $firedTimes = array(); } + + if ($firedTimes === false) + $firedTimes = array(); + foreach ($firedTimes as $fireTime) { $data[3] .= '
  • ' . $fireTime['timestamp'] . '
  • '; }