diff options
author | Friendika <info@friendika.com> | 2011-10-25 19:59:57 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-25 19:59:57 -0700 |
commit | 72d74b88be0e9a25920d336c7eab0aeb09342f63 (patch) | |
tree | 63df86c2a68f67eb56e1e15510731f435b5312ed /include/text.php | |
parent | 1aa1cd2cf5c5f7b7dd21bc3c67becfdfc7d41974 (diff) | |
download | volse-hubzilla-72d74b88be0e9a25920d336c7eab0aeb09342f63.tar.gz volse-hubzilla-72d74b88be0e9a25920d336c7eab0aeb09342f63.tar.bz2 volse-hubzilla-72d74b88be0e9a25920d336c7eab0aeb09342f63.zip |
some dspr fixes
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index a9763fd21..e0f38a3a0 100644 --- a/include/text.php +++ b/include/text.php @@ -481,7 +481,7 @@ function get_tags($s) { // Otherwise pull out single word tags. These can be @nickname, @first_last // and #hash tags. - if(preg_match_all('/([@#][^ \x0D\x0A,:?]+)([ \x0D\x0A,:?]|$)/',$s,$match)) { + if(preg_match_all('/([@#][^ \x0D\x0A,;:?]+)([ \x0D\x0A,;:?]|$)/',$s,$match)) { foreach($match[1] as $mtch) { if(strstr($mtch,"]")) { // we might be inside a bbcode color tag - leave it alone |