From 4e615fb9ff2f47ff15fef436348213460f6dcbbf Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 6 May 2015 07:41:24 +0000 Subject: [PATCH] Fix an incorrect version number check in [32378]. See #32099. Built from https://develop.svn.wordpress.org/trunk@32379 git-svn-id: http://core.svn.wordpress.org/trunk@32349 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/upgrade.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index cabeb003a1..598635067f 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -1595,7 +1595,7 @@ function upgrade_network() { } // 4.3 - if ( $wp_current_db_version < 31378 && 'utf8mb4' === $wpdb->charset ) { + if ( $wp_current_db_version < 32378 && 'utf8mb4' === $wpdb->charset ) { if ( ! ( defined( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) && DO_NOT_UPGRADE_GLOBAL_TABLES ) ) { $upgrade = false; $indexes = $wpdb->get_results( "SHOW INDEXES FROM $wpdb->signups" ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 70984750ff..1cff4f1d6f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32378'; +$wp_version = '4.3-alpha-32379'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.