From: Meik S. <acy...@ph...> - 2009-09-04 10:25:44
|
Author: acydburn Date: Fri Sep 4 11:25:31 2009 New Revision: 10098 Log: changes for a little internal update test run Modified: branches/phpBB-3_0_0/phpBB/install/database_update.php branches/phpBB-3_0_0/phpBB/install/schemas/schema_data.sql Modified: branches/phpBB-3_0_0/phpBB/install/database_update.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/install/database_update.php (original) --- branches/phpBB-3_0_0/phpBB/install/database_update.php Fri Sep 4 11:25:31 2009 *************** *** 8,17 **** * */ ! $updates_to_version = '3.0.6-dev'; // Enter any version to update from to test updates. The version within the db will not be updated. ! $debug_from_version = '3.0.5'; // Which oldest version does this updater support? $oldest_from_version = '3.0.0'; --- 8,17 ---- * */ ! $updates_to_version = '3.0.6-alpha'; // Enter any version to update from to test updates. The version within the db will not be updated. ! $debug_from_version = false; // Which oldest version does this updater support? $oldest_from_version = '3.0.0'; *************** *** 834,840 **** // No changes from 3.0.5-RC1 to 3.0.5 '3.0.5-RC1' => array(), ! // Changes from 3.0.5 '3.0.5' => array( 'add_columns' => array( CONFIRM_TABLE => array( --- 834,840 ---- // No changes from 3.0.5-RC1 to 3.0.5 '3.0.5-RC1' => array(), ! // Changes from 3.0.5 to 3.0.6-RC1 '3.0.5' => array( 'add_columns' => array( CONFIRM_TABLE => array( Modified: branches/phpBB-3_0_0/phpBB/install/schemas/schema_data.sql ============================================================================== *** branches/phpBB-3_0_0/phpBB/install/schemas/schema_data.sql (original) --- branches/phpBB-3_0_0/phpBB/install/schemas/schema_data.sql Fri Sep 4 11:25:31 2009 *************** *** 239,245 **** 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.5'); 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'); --- 239,245 ---- 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.6-alpha'); 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'); |