diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-03 19:43:11 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-03 19:43:11 -0700 |
commit | 0998a108eab34ff8041c3b21589c1a0d36a8ee0a (patch) | |
tree | 6c5963fa4814d39fc1a15077195f8966a5374c18 | |
parent | 8b17a6ddd1c60f7f897e2a6a2632397629cac250 (diff) | |
download | volse-hubzilla-0998a108eab34ff8041c3b21589c1a0d36a8ee0a.tar.gz volse-hubzilla-0998a108eab34ff8041c3b21589c1a0d36a8ee0a.tar.bz2 volse-hubzilla-0998a108eab34ff8041c3b21589c1a0d36a8ee0a.zip |
wrong operator
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index bc543ca48..70c75e5c4 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -666,7 +666,7 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $Text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a class="zrl" href="$1" target="_blank" >$2</a>', $Text); } - if (get_account_techlevel() > 2) + if (get_account_techlevel() < 2) $Text = str_replace('<span class="bookmark-identifier">#^</span>', '', $Text); // Perform MAIL Search |