diff --git a/include/utils/ListViewUtils.php b/include/utils/ListViewUtils.php index bfb4b763b0ada34c68208e70300e381dccd4c1f9..0ef21b7d773caffc5422394f5e4a0f98afbdc746 100755 --- a/include/utils/ListViewUtils.php +++ b/include/utils/ListViewUtils.php @@ -675,9 +675,9 @@ function decode_html($str) { global $default_charset; // Direct Popup action or Ajax Popup action should be treated the same. if ((isset($_REQUEST['action']) && $_REQUEST['action'] == 'Popup') || (isset($_REQUEST['file']) && $_REQUEST['file'] == 'Popup')) - return purifyHtmlEventAttributes(html_entity_decode($str)); + return html_entity_decode($str); else - return purifyHtmlEventAttributes(html_entity_decode($str, ENT_QUOTES, $default_charset)); + return html_entity_decode($str, ENT_QUOTES, $default_charset); } function popup_decode_html($str) {