diff --git a/inc/functions.php b/inc/functions.php index 80332042..77c1da30 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -2303,7 +2303,7 @@ function defined_flags_accumulate($desired_flags) { } function utf8tohtml($utf8) { - $flags = defined_flags_accumulate(['ENT_QUOTES', 'ENT_SUBSTITUTE', 'ENT_DISALLOWED']); + $flags = defined_flags_accumulate(['ENT_NOQUOTES', 'ENT_SUBSTITUTE', 'ENT_DISALLOWED']); return htmlspecialchars($utf8, $flags, 'UTF-8'); }