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:
parent
27f912c861
commit
7640eca783
|
@ -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>
|
2011-02-28 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
* include/functions_db.php: cleaned source code, and erased the deprecated
|
* include/functions_db.php: cleaned source code, and erased the deprecated
|
||||||
functions "dame_nombre_real" and "show_alert_row_mini".
|
functions "dame_nombre_real" and "show_alert_row_mini".
|
||||||
|
|
|
@ -459,7 +459,7 @@ foreach ($result as $event) {
|
||||||
$string = '<table border="0" width="90%"><tr>';
|
$string = '<table border="0" width="90%"><tr>';
|
||||||
$string .= '<td align="left" valign="top" width="25%">';
|
$string .= '<td align="left" valign="top" width="25%">';
|
||||||
$string .= '<b>' . __('Event name') . ':</b></td><td align="left">';
|
$string .= '<b>' . __('Event name') . ':</b></td><td align="left">';
|
||||||
$string .= $event["evento"];
|
$string .= safe_output($event["evento"]);
|
||||||
$string .= '</td></tr><tr>';
|
$string .= '</td></tr><tr>';
|
||||||
$string .= '<td align="left" valign="top" width="15%">';
|
$string .= '<td align="left" valign="top" width="15%">';
|
||||||
$string .= '<b>' . __('Severity') . ':</b></td><td align="left">';
|
$string .= '<b>' . __('Severity') . ':</b></td><td align="left">';
|
||||||
|
|
Loading…
Reference in New Issue