From 0f4a42f550b5bc863cec7c7a3fca26a028599dcc Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 25 Nov 2011 22:41:50 -0800 Subject: start on bug #227 - more to do --- include/text.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/text.php') diff --git a/include/text.php b/include/text.php index 08803cc9b..c4fd76e3e 100644 --- a/include/text.php +++ b/include/text.php @@ -492,6 +492,9 @@ function get_tags($s) { // ignore strictly numeric tags like #1 if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1))) continue; + // try not to catch url fragments + if(strpos($s,$mtch) && preg_match('/[a-zA-z0-9\/]/',substr($s,strpos($s,$mtch)-1,1))) + continue; $ret[] = $mtch; } } -- cgit v1.2.3