From: Adrian Lang Date: Sun, 22 Feb 2009 16:45:26 +0000 (+0100) Subject: Fixes #1258: A period in a hashtag leads to the tag being interpreted as url and... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=120eb77400843669980850882dfae83ca7f8e7e7;p=quix0rs-gnu-social.git Fixes #1258: A period in a hashtag leads to the tag being interpreted as url and hence breaking the tag. --- diff --git a/lib/util.php b/lib/util.php index 5345a08bba..18e4f310ce 100644 --- a/lib/util.php +++ b/lib/util.php @@ -456,6 +456,9 @@ function common_replace_urls_callback($text, $callback) { if (!in_array($url_parts[2], $tlds)) continue; + // Make sure we didn't capture a hash tag + if (strpos($url, '#') === 0) continue; + // Put the url back the way we found it. $url = (mb_strpos($orig_url, htmlspecialchars($url)) === FALSE) ? $url:htmlspecialchars($url);