aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/functions/bbcode.php
diff options
context:
space:
mode:
authornatec <natec@users.sourceforge.net>2001-03-10 03:42:46 +0000
committernatec <natec@users.sourceforge.net>2001-03-10 03:42:46 +0000
commitafae95b90f159d4531ec48f9b320938181dd6292 (patch)
tree74b2ac320256670fdcfc27ff5c2634d6a04159b5 /phpBB/functions/bbcode.php
parent66bc8a309b5262e229b5a6ac952ad795d3b07a85 (diff)
downloadforums-afae95b90f159d4531ec48f9b320938181dd6292.tar
forums-afae95b90f159d4531ec48f9b320938181dd6292.tar.gz
forums-afae95b90f159d4531ec48f9b320938181dd6292.tar.bz2
forums-afae95b90f159d4531ec48f9b320938181dd6292.tar.xz
forums-afae95b90f159d4531ec48f9b320938181dd6292.zip
Performance hacks in template.inc - let me know if stuff breaks.
git-svn-id: file:///svn/phpbb/trunk@96 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/functions/bbcode.php')
-rw-r--r--phpBB/functions/bbcode.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/functions/bbcode.php b/phpBB/functions/bbcode.php
index dcc64b9afa..3c895f498a 100644
--- a/phpBB/functions/bbcode.php
+++ b/phpBB/functions/bbcode.php
@@ -120,8 +120,6 @@ function bbencode_first_pass($text)
$uid = md5(uniqid(rand()));
$uid = substr($uid, 0, BBCODE_UID_LEN);
- //echo "UID LENGTH: " . strlen($uid) . "<br>";
-
// pad it with a space so we can distinguish between FALSE and matching the 1st char (index 0).
// This is important; bbencode_quote(), bbencode_list(), and bbencode_code() all depend on it.
$text = " " . $text;