From: Sean Murphy Date: Thu, 5 Feb 2009 22:29:58 +0000 (-0500) Subject: Fix for unicode string auto-linking bug X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e08b7f7205835fcad611e8b059a84c7a250999c7;p=quix0rs-gnu-social.git Fix for unicode string auto-linking bug --- diff --git a/lib/util.php b/lib/util.php index 87c239d5d9..e963175204 100644 --- a/lib/util.php +++ b/lib/util.php @@ -447,7 +447,7 @@ function common_replace_urls_callback($text, $callback) { // Replace it! $start = mb_strpos($text, $url, $offset); - $text = substr_replace($text, $modified_url, $start, mb_strlen($url)); + $text = mb_substr($text, 0, $start).$modified_url.mb_substr($text, $start + mb_strlen($url), mb_strlen($text)); $offset = $start + mb_strlen($modified_url); }