From 9d55794e33c32a94f3630a2708c288c7b8ea6eef Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 10 Nov 2010 17:56:05 +0100 Subject: [PATCH 1/3] [ticket/9891] Updater drops language-selection after database-update PHPBB3-9891 --- phpBB/install/database_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 95f7cdae87..01e8ef7658 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -477,7 +477,7 @@ else

-

" class="button1">

+

" class="button1">

Date: Wed, 10 Nov 2010 18:26:02 +0100 Subject: [PATCH 2/3] [ticket/9140] Check current board version in incremental update packages We need to use $this->current_version in this case instead of $config['version']. Otherwise the message will be displayed after the database got updated from database_update.php. Using PHPBB_VERSION from includes/constants.php is not the right selection either, because than the message is displayed after the files got updated and are checked one last time. PHPBB3-9140 --- phpBB/install/install_update.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 6184cbbc33..ec76f2a407 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -193,13 +193,13 @@ class install_update extends module } // Check if the update files are actually meant to update from the current version - if ($config['version'] != $this->update_info['version']['from']) + if ($this->current_version != $this->update_info['version']['from']) { $this->unequal_version = true; $template->assign_vars(array( 'S_ERROR' => true, - 'ERROR_MSG' => sprintf($user->lang['INCOMPATIBLE_UPDATE_FILES'], $config['version'], $this->update_info['version']['from'], $this->update_info['version']['to']), + 'ERROR_MSG' => sprintf($user->lang['INCOMPATIBLE_UPDATE_FILES'], $this->current_version, $this->update_info['version']['from'], $this->update_info['version']['to']), )); } From 7b4cdc94a850c95582557d22ea7fd97e716734c7 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Wed, 10 Nov 2010 19:01:54 +0100 Subject: [PATCH 3/3] [develop-olympus] Updating changelog for last minute 3.0.8-RC1 fixes. --- phpBB/docs/CHANGELOG.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index f50e5a062f..f5d6da94b9 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -402,6 +402,8 @@
  • [PHPBB3-9888] - Update fails when Bing [Bot] was already added to the users table
  • +
  • [PHPBB3-9891] - Updater drops language-selection after database-update +
  • Improvement