2011-03-01 Miguel de Dios <miguel.dedios@artica.es>

* 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
This commit is contained in:
mdtrooper 2011-03-01 10:34:14 +00:00
parent 27f912c861
commit 7640eca783
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-03-01 Miguel de Dios <miguel.dedios@artica.es>
* operation/events/events_list.php: fixed the html entities in the extend
list.
2011-02-28 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_db.php: cleaned source code, and erased the deprecated
functions "dame_nombre_real" and "show_alert_row_mini".

View File

@ -459,7 +459,7 @@ foreach ($result as $event) {
$string = '<table border="0" width="90%"><tr>';
$string .= '<td align="left" valign="top" width="25%">';
$string .= '<b>' . __('Event name') . ':</b></td><td align="left">';
$string .= $event["evento"];
$string .= safe_output($event["evento"]);
$string .= '</td></tr><tr>';
$string .= '<td align="left" valign="top" width="15%">';
$string .= '<b>' . __('Severity') . ':</b></td><td align="left">';