Upgrade the database so we get all the new options for thumbnail size etc in all blogs.

git-svn-id: https://develop.svn.wordpress.org/trunk@7499 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-03-24 12:15:55 +00:00
parent fead988cbc
commit deee165c74
2 changed files with 3 additions and 2 deletions

View File

@ -198,7 +198,7 @@ function upgrade_all() {
if ( $wp_current_db_version < 6124 )
upgrade_230_old_tables();
if ( $wp_current_db_version < 7098 )
if ( $wp_current_db_version < 7499 )
upgrade_250();
maybe_disable_automattic_widgets();
@ -725,6 +725,7 @@ function upgrade_250() {
if ( $wp_current_db_version < 6689 ) {
populate_roles_250();
}
}
// The functions we use to actually do stuff

View File

@ -16,6 +16,6 @@ $wp_version = '2.5-RC1.1';
*
* @global int $wp_db_version
*/
$wp_db_version = 7098;
$wp_db_version = 7499;
?>