From 7640eca78331a31142d66d7a75a7b8a837cd0c5c Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Tue, 1 Mar 2011 10:34:14 +0000 Subject: [PATCH] 2011-03-01 Miguel de Dios * operation/events/events_list.php: fixed the html entities in the extend list. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4031 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ pandora_console/operation/events/events_list.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index e05aa378dd..0991c9788a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2011-03-01 Miguel de Dios + * operation/events/events_list.php: fixed the html entities in the extend + list. + 2011-02-28 Miguel de Dios * include/functions_db.php: cleaned source code, and erased the deprecated functions "dame_nombre_real" and "show_alert_row_mini". diff --git a/pandora_console/operation/events/events_list.php b/pandora_console/operation/events/events_list.php index 0852df57d9..36b5b00120 100644 --- a/pandora_console/operation/events/events_list.php +++ b/pandora_console/operation/events/events_list.php @@ -459,7 +459,7 @@ foreach ($result as $event) { $string = ''; $string .= ''; $string .= '
'; $string .= '' . __('Event name') . ':'; - $string .= $event["evento"]; + $string .= safe_output($event["evento"]); $string .= '
'; $string .= '' . __('Severity') . ':';