2010-07-08 Miguel de Dios <miguel.dedios@artica.es>

* godmode/servers/plugin.php: fixed the description text of ajax return
	when translate the &gt; or &lt; to < or > instead to keep the entity.
	Fixes: #3026785



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2975 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-07-08 11:12:15 +00:00
parent f87cb324c3
commit 065f2790ac
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-07-08 Miguel de Dios <miguel.dedios@artica.es>
* godmode/servers/plugin.php: fixed the description text of ajax return
when translate the &gt; or &lt; to < or > instead to keep the entity.
Fixes: #3026785
2010-07-08 Miguel de Dios <miguel.dedios@artica.es>
* install.php: added to check zip library for the filemanager.

View File

@ -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;
}