From e802c81ec179a03b9d0b87941dce639c0a10ecbe Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 15 Aug 2012 05:09:44 -0700 Subject: [PATCH] fix single quotes --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index adfa90e40..85ba99dd3 100644 --- a/include/text.php +++ b/include/text.php @@ -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)); }}