mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10045] Database updater version for 3.1-changes should be 3.1.0-dev
PHPBB3-10045
This commit is contained in:
parent
1cc5087c36
commit
528c54f0f7
1 changed files with 5 additions and 3 deletions
|
@ -2,13 +2,12 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package install
|
* @package install
|
||||||
* @version $Id$
|
|
||||||
* @copyright (c) 2006 phpBB Group
|
* @copyright (c) 2006 phpBB Group
|
||||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
* @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.
|
// Enter any version to update from to test updates. The version within the db will not be updated.
|
||||||
$debug_from_version = false;
|
$debug_from_version = false;
|
||||||
|
@ -921,6 +920,8 @@ function database_update_info()
|
||||||
'3.0.7-PL1' => array(),
|
'3.0.7-PL1' => array(),
|
||||||
// No changes from 3.0.8-RC1 to 3.0.8
|
// No changes from 3.0.8-RC1 to 3.0.8
|
||||||
'3.0.8-RC1' => array(),
|
'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':
|
case '3.0.8-RC1':
|
||||||
break;
|
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);
|
set_config('use_system_cron', 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue