From 2a6abaf9d54f7345e04db8b3fb5fe96eaa2a5c1d Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 5 Feb 2013 20:14:19 -0800 Subject: partial cleanup of mod/profile_photo - needs a LOT more --- include/text.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/text.php') diff --git a/include/text.php b/include/text.php index 18c5aeaf1..996f769dd 100644 --- a/include/text.php +++ b/include/text.php @@ -177,8 +177,9 @@ if(! function_exists('xmlify')) { function xmlify($str) { $buffer = ''; - for($x = 0; $x < mb_strlen($str); $x ++) { - $char = $str[$x]; + $len = mb_strlen($str); + for($x = 0; $x < $len; $x ++) { + $char = mb_substr($str,$x,1); switch( $char ) { -- cgit v1.2.3