From f379d923b879185cb8ecc9399e19a3654c338ed1 Mon Sep 17 00:00:00 2001
From: zarzuelo <zarzuelo@gmail.com>
Date: Mon, 19 Apr 2010 13:52:46 +0000
Subject: [PATCH] 2010-04-19 Sergio Martin <sergio.martin@artica.es>

        * godmode/alerts/alert_list.list.php: Fixed a var definition
        error



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2579 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
---
 pandora_console/ChangeLog                          | 5 +++++
 pandora_console/godmode/alerts/alert_list.list.php | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index c3c748dd88..88c0b4e323 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-19 Sergio Martin <sergio.martin@artica.es>
+
+	* godmode/alerts/alert_list.list.php: Fixed a var definition 
+	error
+
 2010-04-19 Sergio Martin <sergio.martin@artica.es>
 
 	* include/functions_html.php: Added the parameter style 
diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php
index 38360e0284..4b5e0f3b6e 100644
--- a/pandora_console/godmode/alerts/alert_list.list.php
+++ b/pandora_console/godmode/alerts/alert_list.list.php
@@ -232,7 +232,7 @@ foreach ($simple_alerts as $alert) {
 	
 	$actions = get_alert_agent_module_actions ($alert['id']);
 
-
+	$data[5] = '';
 	if (empty($actions)){
 		// Get and show default actions for this alert
 		$default_action = get_db_sql ("SELECT id_alert_action FROM talert_templates WHERE id = ".$alert["id_alert_template"]);