diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f52215bb3b..a58bed05b1 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-02-03 Juan Manuel Ramon + * operation/search_alerts.php: Actions_name array now is initialized to void value. + + Fixes: #3171506 + 2011-02-02 Sancho lerena * pandoradb.sql: Altered lenght for custom SQL reports. diff --git a/pandora_console/operation/search_alerts.php b/pandora_console/operation/search_alerts.php index 5d4a379072..8e3ec571d3 100755 --- a/pandora_console/operation/search_alerts.php +++ b/pandora_console/operation/search_alerts.php @@ -117,6 +117,7 @@ if($searchAlerts) { $alerts[$key]['template_name'] = $alert['template_name']; $actions = get_alert_agent_module_actions($alert['id']); + $actions_name = array(); foreach($actions as $action) { $actions_name[] = $action['name']; }