use consistent quote encoding

This commit is contained in:
friendica
2012-12-06 16:12:45 -08:00
parent 6ed27f9503
commit 0bcbcc3b5a
2 changed files with 4 additions and 4 deletions

View File

@@ -1044,7 +1044,7 @@ function scale_external_images($s, $include_link = true, $scale_replace = false)
// replace the special char encoding
$s = htmlspecialchars($s,ENT_QUOTES,'UTF-8');
$s = htmlspecialchars($s,ENT_COMPAT,'UTF-8');
return $s;
}