aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index adaff5f49..6d1ea165c 100644
--- a/boot.php
+++ b/boot.php
@@ -1375,8 +1375,10 @@ function get_tags($s) {
$ret = array();
if(preg_match_all('/([@#][^ ,:?]*)([ ,:?]|$)/',$s,$match)) {
foreach($match[1] as $match) {
- if(strstr($match,"]"))
+ if(strstr($match,"]")) {
+ // we might be inside a bbcode color tag - leave it alone
continue;
+ }
if(substr($match,-1,1) === '.')
$ret[] = substr($match,0,-1);
else