From 485247e9011e08a6ff0b9a2ff3d7a60bad515a26 Mon Sep 17 00:00:00 2001 From: zach Date: Mon, 3 Nov 2008 16:16:53 -0500 Subject: Twitter-compatible API - properly encode and decode UTF-8 HTML entities darcs-hash:20081103211653-462f3-58a0ad41ab0426c21aceb04b4a91dc52559018d0.gz --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index 44c75156c..88841d3f6 100644 --- a/lib/util.php +++ b/lib/util.php @@ -708,7 +708,7 @@ function common_render_content($text, $notice) { } function common_render_text($text) { - $r = htmlspecialchars($text); + $r = htmlentities($text, ENT_NOQUOTES, 'UTF-8'); $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r); $r = preg_replace_callback('@https?://[^\]>\s]+@', 'common_render_uri_thingy', $r); -- cgit v1.2.3-54-g00ecf