1
0
Fork 0

fix angle char storage and transmission, rev update

This commit is contained in:
friendica 2012-08-03 18:33:11 -07:00
commit 621e737826
5 changed files with 12 additions and 5 deletions

View file

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