fix single quotes

This commit is contained in:
friendica 2012-08-15 05:09:44 -07:00
parent b8df47e97c
commit e802c81ec1
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, ENT_QUOTES, 'UTF-8', false));
return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
}}