From 08beb549d19d34a897e37f7e7ec21d1cb1a884d6 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Tue, 13 Mar 2007 22:04:38 +0000 Subject: [PATCH] - forgot the brackets there :o git-svn-id: file:///svn/phpbb/trunk@7183 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/develop/adjust_sizes.php | 2 +- phpBB/install/convertors/functions_phpbb20.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/develop/adjust_sizes.php b/phpBB/develop/adjust_sizes.php index 9c0612dd8a..7d72813056 100644 --- a/phpBB/develop/adjust_sizes.php +++ b/phpBB/develop/adjust_sizes.php @@ -41,7 +41,7 @@ while ($row = $db->sql_fetchrow($result)) // Only if a bbcode uid is present, the signature present and a size tag used... if ($bbcode_uid && $row['user_sig'] && strpos($row['user_sig'], '[size=') !== false) { - $row['user_sig'] = preg_replace_callback('/\[size=(\d*):' . $bbcode_uid . '\]/', 'replace_size', $row['user_sig']); + $row['user_sig'] = preg_replace_callback('/\[size=(\d*):(' . $bbcode_uid . ')\]/', 'replace_size', $row['user_sig']); $sql = 'UPDATE ' . USERS_TABLE . " SET user_sig = '" . $db->sql_escape($row['user_sig']) . "' WHERE user_id = " . $row['user_id']; 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);