From fe0932fdf02a45be914414eca586add1c083cbee Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 26 Jun 2011 20:47:33 +0200 Subject: [PATCH 1/2] [prep-release-3.0.9] Bumping version number for 3.0.9-RC3. --- build/build.xml | 6 +++--- phpBB/includes/constants.php | 2 +- phpBB/install/database_update.php | 6 ++++++ phpBB/install/schemas/schema_data.sql | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/build/build.xml b/build/build.xml index 30dfa0c8da..ed9643c12f 100644 --- a/build/build.xml +++ b/build/build.xml @@ -2,9 +2,9 @@ - - - + + + diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index a372b96017..2f485fb4d7 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -25,7 +25,7 @@ if (!defined('IN_PHPBB')) */ // phpBB Version -define('PHPBB_VERSION', '3.0.9-RC2'); +define('PHPBB_VERSION', '3.0.9-RC3'); // QA-related // define('PHPBB_QA', 1); diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index edfc3b1027..bfbddf2dc5 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -972,6 +972,8 @@ function database_update_info() ), // No changes from 3.0.9-RC1 to 3.0.9-RC2 '3.0.9-RC1' => array(), + // No changes from 3.0.9-RC2 to 3.0.9-RC3 + '3.0.9-RC2' => array(), ); } @@ -1967,6 +1969,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.9-RC1 to 3.0.9-RC2 case '3.0.9-RC1': break; + + // No changes from 3.0.9-RC2 to 3.0.9-RC3 + case '3.0.9-RC2': + break; } } diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 5e8aee85ef..b3f136ff7a 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -245,7 +245,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.9-RC2'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.9-RC3'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400'); From 172e3c07d6eac211aaa8302f3802182fa7b1d0d9 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Sun, 26 Jun 2011 20:52:54 +0200 Subject: [PATCH 2/2] [prep-release-3.0.9] Update Changelog for 3.0.9-RC3 release. --- phpBB/docs/CHANGELOG.html | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 499afb43bd..6b12cb81bf 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -207,6 +207,8 @@
  • [PHPBB3-10021] - "Find a member" generates SQL error when large dates are entered
  • +
  • [PHPBB3-10029] - No such thing as $_SERVER['HTTP_VERSION'] +
  • [PHPBB3-10033] - "Disallow usernames" does not check already disallowed names
  • [PHPBB3-10035] - ACP template edit feature allows to read any files on webserver and to upload/execute any script on it @@ -285,7 +287,9 @@
  • [PHPBB3-10178] - build.xml does not specify path to find - breaks on FreeBSD
  • -
  • [PHPBB3-10188] - Wrong handling of output_buffering value in message handler +
  • [PHPBB3-10188] - Broken compressed output when errors/warnings are handled by phpbb and output_buffering is set to 4096 and phpbb gzip is enabled +
  • +
  • [PHPBB3-10191] - Duplicate output when output_handler is set in php.ini
  • [PHPBB3-10192] - Missing semicolon in MySQL Upgrader
  • @@ -301,6 +305,10 @@
  • [PHPBB3-10211] - Missing space on the recent PHPBB3-9992 changes
  • +
  • [PHPBB3-10213] - IP limit index name too long on Oracle +
  • +
  • [PHPBB3-10214] - Cannot configure Q&A on Oracle +
  • [PHPBB3-10218] - STRIP is not defined in style.php causing a notice to be thrown
  • [PHPBB3-10219] - Inappropriate character in web.config file @@ -309,6 +317,22 @@
  • [PHPBB3-10221] - Inconsistent usage of "Seconds" in ACP Settings
  • +
  • [PHPBB3-7729] - Prevent date/time functions from throwing E_WARNING on PHP 5.3 by setting a default timezone +
  • +
  • [PHPBB3-10188] - Broken compressed output when errors/warnings are handled by phpbb and output_buffering is set to 4096 and phpbb gzip is enabled +
  • +
  • [PHPBB3-10223] - Updater references startup.php from board path +
  • +
  • [PHPBB3-10228] - Typo in 3.0.9-RC1 user registration settings +
  • +
  • [PHPBB3-10229] - On languge/acp/styles.php "%s" should be "%s" +
  • +
  • [PHPBB3-10232] - Search within topic/forum searches all posts +
  • +
  • [PHPBB3-10233] - IE Emulation fix breaks posting layout when PMing +
  • +
  • [PHPBB3-10234] - msg_handler() reports E_WARNING as "PHP Notice: " +
  • Improvement