One day we'll have ignored all purely numeric hashtags like #33. Found yet another edge case.

This commit is contained in:
Friendika 2011-09-09 17:35:26 -07:00
parent d7a2ab9c1f
commit ebb9af8946
1 changed files with 3 additions and 4 deletions

View File

@ -482,13 +482,12 @@ function get_tags($s) {
// we might be inside a bbcode color tag - leave it alone // we might be inside a bbcode color tag - leave it alone
continue; continue;
} }
if(substr($mtch,-1,1) === '.')
$mtch = substr($mtch,0,-1);
// ignore strictly numeric tags like #1 // ignore strictly numeric tags like #1
if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1))) if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1)))
continue; continue;
if(substr($mtch,-1,1) === '.') $ret[] = $mtch;
$ret[] = substr($mtch,0,-1);
else
$ret[] = $mtch;
} }
} }
return $ret; return $ret;