From 5180584bfb57a2d3d9530848206be7481835bfb2 Mon Sep 17 00:00:00 2001 From: westi Date: Mon, 24 Mar 2008 12:15:55 +0000 Subject: [PATCH] Upgrade the database so we get all the new options for thumbnail size etc in all blogs. git-svn-id: http://svn.automattic.com/wordpress/trunk@7499 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/upgrade.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index a0389f6d73..79dc583f43 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -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 diff --git a/wp-includes/version.php b/wp-includes/version.php index 7dacffbc93..81e357b7c9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,6 +16,6 @@ $wp_version = '2.5-RC1.1'; * * @global int $wp_db_version */ -$wp_db_version = 7098; +$wp_db_version = 7499; ?>