diff options
author | natec <natec@users.sourceforge.net> | 2001-12-11 09:13:04 +0000 |
---|---|---|
committer | natec <natec@users.sourceforge.net> | 2001-12-11 09:13:04 +0000 |
commit | 95679a693275714c7196b70dda011822b9ad6d4f (patch) | |
tree | a4b4fe32251e6b437649261462dfa096f327c3f9 /phpBB/includes/bbcode.php | |
parent | 01b7683c36a3f065de20e037576fa04ae23b34fb (diff) | |
download | forums-95679a693275714c7196b70dda011822b9ad6d4f.tar forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.gz forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.bz2 forums-95679a693275714c7196b70dda011822b9ad6d4f.tar.xz forums-95679a693275714c7196b70dda011822b9ad6d4f.zip |
bug #489842 -- some pages were doing bbencode_second and make_click in a bad order.
git-svn-id: file:///svn/phpbb/trunk@1555 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/bbcode.php')
-rw-r--r-- | phpBB/includes/bbcode.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index eb301fe6cd..22dbd79b91 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -578,6 +578,7 @@ function bbencode_second_pass_code($text, $uid, $bbcode_tpl) */ function make_clickable($text) { + // pad it with a space so we can match things at the start of the 1st line. $ret = " " . $text; |