correct the invocation for htmlspecialchars to handle quote display issues with editplain and reshare

This commit is contained in:
friendica 2012-08-15 00:02:15 -07:00
parent 9553aeb3bd
commit 4654ebd43b
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ function notags($string) {
if(! function_exists('escape_tags')) {
function escape_tags($string) {
return(htmlspecialchars($string));
return(htmlspecialchars($string, ENT_QUOTES, 'UTF-8', false));
}}