Revert "+ [task#151028] Convert html entities to characters."

This reverts commit edf7c9d0c3.
This commit is contained in:
liugang
2025-11-25 10:51:24 +08:00
parent 038ca6048e
commit c7d18d7a10
-3
View File
@@ -1055,9 +1055,6 @@ class baseControl
$content = ob_get_clean();
ob_start();
$find = array('<', '>', '&', ''', '"');
$replace = array('<', '>', '&', "'", '\\\\&quot;');
$content = str_replace($find, $replace, $content);
echo $content;
/**