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
This commit is contained in:
Andreas Fischer 2009-12-22 18:13:17 +00:00
parent ba1d50559f
commit bc0cc313df

View file

@ -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;
}
}