diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 61dce02e14..0b6525a211 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-07-08 Miguel de Dios + + * godmode/servers/plugin.php: fixed the description text of ajax return + when translate the > or < to < or > instead to keep the entity. + Fixes: #3026785 + 2010-07-08 Miguel de Dios * install.php: added to check zip library for the filemanager. diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 2095fc2f2d..f7911f2ab9 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -20,7 +20,7 @@ if (is_ajax ()) { $description = get_db_value_filter('description', 'tplugin', array('id' => $id_plugin)); - echo safe_output($description); + echo htmlentities (safe_output($description), ENT_QUOTES, "UTF-8", true); return; }