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.