修复ua_htmlspecialchars_decode问题

This commit is contained in:
2022-10-11 19:53:40 +08:00
parent 34fc44da7c
commit 50d45a1ac2

View File

@@ -254,7 +254,7 @@ if (!function_exists('ua_htmlspecialchars_decode')) {
$string = ''; $string = '';
} }
return ua_htmlspecialchars_decode($string, $flag); return htmlspecialchars_decode($string, $flag);
} }
} }