diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2011-02-16 11:29:49 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-16 11:29:49 +0100 |
commit | 528c54f0f73eb73bfc347b4fc448c6dbba0e0460 (patch) | |
tree | be99acfe48e874202c642f222fa3843d8c5edf54 /phpBB/install | |
parent | 1cc5087c36c58cde214360c96d9c7b45dc6c4db0 (diff) | |
download | forums-528c54f0f73eb73bfc347b4fc448c6dbba0e0460.tar forums-528c54f0f73eb73bfc347b4fc448c6dbba0e0460.tar.gz forums-528c54f0f73eb73bfc347b4fc448c6dbba0e0460.tar.bz2 forums-528c54f0f73eb73bfc347b4fc448c6dbba0e0460.tar.xz forums-528c54f0f73eb73bfc347b4fc448c6dbba0e0460.zip |
[ticket/10045] Database updater version for 3.1-changes should be 3.1.0-dev
PHPBB3-10045
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index c47e9b790a..0c17c18b5e 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2,13 +2,12 @@ /** * * @package install -* @version $Id$ * @copyright (c) 2006 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ -$updates_to_version = '3.0.9-dev'; +$updates_to_version = '3.1.0-dev'; // Enter any version to update from to test updates. The version within the db will not be updated. $debug_from_version = false; @@ -921,6 +920,8 @@ function database_update_info() '3.0.7-PL1' => array(), // No changes from 3.0.8-RC1 to 3.0.8 '3.0.8-RC1' => array(), + // No changes from 3.1.0-dev to 3.1.0-A1 + '3.1.0-dev' => array(), ); } @@ -1864,7 +1865,8 @@ function change_database_data(&$no_updates, $version) case '3.0.8-RC1': break; - case '3.0.9-dev': + // Changes from 3.1.0-dev to 3.1.0-A1 + case '3.1.0-dev': set_config('use_system_cron', 0); break; } |