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') . ':';