2011-02-23 Miguel de Dios <miguel.dedios@artica.es>
* pandora_console/operation/events/events_list.php: fixed the show html entities. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3999 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7ca0c50e96
commit
ca35855199
|
@ -1,3 +1,8 @@
|
|||
2011-02-23 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* pandora_console/operation/events/events_list.php: fixed the show html
|
||||
entities.
|
||||
|
||||
2011-02-23 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/javascript/pandora_modules.js: fixed the disabled button snmp when
|
||||
|
|
|
@ -348,10 +348,10 @@ foreach ($result as $event) {
|
|||
$data[1] = '<span title="'.$event["evento"].'" class="f9">';
|
||||
$data[1] .= '<a href="'.$url.'&group_rep=0&offset=0&pure='.$config["pure"].'&search='.base64_encode ($event["evento"]).'">';
|
||||
if (strlen ($event["evento"]) > 50) {
|
||||
$data[1] .= mb_substr ($event["evento"], 0, 50)."...";
|
||||
$data[1] .= mb_substr (safe_output($event["evento"]), 0, 50)."...";
|
||||
}
|
||||
else {
|
||||
$data[1] .= $event["evento"];
|
||||
$data[1] .= safe_output($event["evento"]);
|
||||
}
|
||||
$data[1] .= '</a></span>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue