1
1
Fork 0

no newlines in tags

This commit is contained in:
Friendika 2010-11-28 14:43:14 -08:00
commit 34a8fb935d
2 changed files with 1 additions and 2 deletions

View file

@ -1379,7 +1379,7 @@ function activity_match($haystack,$needle) {
if(! function_exists('get_tags')) {
function get_tags($s) {
$ret = array();
if(preg_match_all('/([@#][^ ,:?]*)([ ,:?]|$)/',$s,$match)) {
if(preg_match_all('/([@#][^ \x0D\x0A,:?]*)([ \x0D\x0A,:?]|$)/',$s,$match)) {
foreach($match[1] as $match) {
if(strstr($match,"]")) {
// we might be inside a bbcode color tag - leave it alone