diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-12-22 18:13:17 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-12-22 18:13:17 +0000 |
commit | bc0cc313dfc2fc175f51af8d84f3ee21d0873dee (patch) | |
tree | c61a640d93e0a8aaf5f9092fc87cd23814db163d /phpBB/install | |
parent | ba1d50559feb3532bad6a9e31b82883baf506cdf (diff) | |
download | forums-bc0cc313dfc2fc175f51af8d84f3ee21d0873dee.tar forums-bc0cc313dfc2fc175f51af8d84f3ee21d0873dee.tar.gz forums-bc0cc313dfc2fc175f51af8d84f3ee21d0873dee.tar.bz2 forums-bc0cc313dfc2fc175f51af8d84f3ee21d0873dee.tar.xz forums-bc0cc313dfc2fc175f51af8d84f3ee21d0873dee.zip |
Bump database updater version to 3.0.7-dev
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10362 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index bf9c183e0c..acbc241c4d 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -$updates_to_version = '3.0.6'; +$updates_to_version = '3.0.7-dev'; // Enter any version to update from to test updates. The version within the db will not be updated. $debug_from_version = false; @@ -897,6 +897,9 @@ function database_update_info() '3.0.6-RC3' => array(), // No changes from 3.0.6-RC4 to 3.0.6 '3.0.6-RC4' => array(), + + // No changes from 3.0.6 to 3.0.7-RC1 + '3.0.6' => array(), ); } @@ -1569,6 +1572,10 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.6-RC4 to 3.0.6 case '3.0.6-RC4': break; + + // No changes from 3.0.6 to 3.0.7-RC1 + case '3.0.6': + break; } } |