aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-12 10:11:17 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-12 10:11:17 +0000
commita41bc62dabae0ef778e47214a912bbf7730c6e7a (patch)
tree57a6da4b15a0603cbad5be664696d7dabaf77653 /phpBB/install/convertors/functions_phpbb20.php
parent47a3bc1b081f0aa8766f87b51c8d25db75c203a8 (diff)
downloadforums-a41bc62dabae0ef778e47214a912bbf7730c6e7a.tar
forums-a41bc62dabae0ef778e47214a912bbf7730c6e7a.tar.gz
forums-a41bc62dabae0ef778e47214a912bbf7730c6e7a.tar.bz2
forums-a41bc62dabae0ef778e47214a912bbf7730c6e7a.tar.xz
forums-a41bc62dabae0ef778e47214a912bbf7730c6e7a.zip
use correct bbcode uid...
git-svn-id: file:///svn/phpbb/trunk@7173 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-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 26f5407915..512f0598be 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*):' . $bbcode_uid . '\]/', 'replace_size', $message);
+ $message = preg_replace_callback('/\[size=(\d*):' . $convert->row['old_bbcode_uid'] . '\]/', 'replace_size', $message);
}
$message = preg_replace('/\:(([a-z0-9]:)?)' . $convert->row['old_bbcode_uid'] . '/s', '', $message);