aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-03-13 22:04:38 +0000
committerNils Adermann <naderman@naderman.de>2007-03-13 22:04:38 +0000
commit08beb549d19d34a897e37f7e7ec21d1cb1a884d6 (patch)
treef7960b773cf60e01299504459b6ce063c697ec87 /phpBB/install
parentce8b00801edabd8de8b88891d6997309e7ca0459 (diff)
downloadforums-08beb549d19d34a897e37f7e7ec21d1cb1a884d6.tar
forums-08beb549d19d34a897e37f7e7ec21d1cb1a884d6.tar.gz
forums-08beb549d19d34a897e37f7e7ec21d1cb1a884d6.tar.bz2
forums-08beb549d19d34a897e37f7e7ec21d1cb1a884d6.tar.xz
forums-08beb549d19d34a897e37f7e7ec21d1cb1a884d6.zip
- forgot the brackets there :o
git-svn-id: file:///svn/phpbb/trunk@7183 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index c139cf4189..f5b620db63 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -1156,7 +1156,7 @@ function phpbb_prepare_message($message)
// Adjust size...
if (strpos($message, '[size=') !== false)
{
- $message = preg_replace_callback('/\[size=(\d*):' . $convert->row['old_bbcode_uid'] . '\]/', 'phpbb_replace_size', $message);
+ $message = preg_replace_callback('/\[size=(\d*):(' . $convert->row['old_bbcode_uid'] . ')\]/', 'phpbb_replace_size', $message);
}
$message = preg_replace('/\:(([a-z0-9]:)?)' . $convert->row['old_bbcode_uid'] . '/s', '', $message);