aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/bbcode.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-26 15:04:27 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-26 15:04:27 +0000
commit9fca29eae3051730b72f6144e2683cd2fe7c8d0b (patch)
tree247a6d85513aecc010d34dec73e80d0996f4df05 /phpBB/includes/bbcode.php
parent8dc9fc089bf3a45bd5f23986d5c9f4992196834f (diff)
downloadforums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar
forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.gz
forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.bz2
forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.xz
forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.zip
some tiny changes...
git-svn-id: file:///svn/phpbb/trunk@5967 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r--phpBB/includes/bbcode.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php
index 3c1e7babbf..98bdb3bfcc 100644
--- a/phpBB/includes/bbcode.php
+++ b/phpBB/includes/bbcode.php
@@ -50,7 +50,13 @@ class bbcode
if (!$this->bbcode_bitfield)
{
- return $message;
+ // Remove the uid from tags that have not been transformed into HTML
+ if ($this->bbcode_uid)
+ {
+ $message = str_replace(':' . $this->bbcode_uid, '', $message);
+ }
+
+ return;
}
$str = array('search' => array(), 'replace' => array());