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
This commit is contained in:
Gary Pendergast 2015-05-06 07:41:24 +00:00
parent 3a6e79c409
commit 4e615fb9ff
2 changed files with 2 additions and 2 deletions

View File

@ -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" );

View File

@ -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.