From 3bfd096440317e6e458c187e06865249722a54ed Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Tue, 11 Aug 2015 23:44:24 +0000 Subject: [PATCH] Fix paste typos in upgrade.php. Props tellyworth. Fixes #33206. Built from https://develop.svn.wordpress.org/trunk@33609 git-svn-id: http://core.svn.wordpress.org/trunk@33576 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/upgrade.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/upgrade.php b/wp-admin/includes/upgrade.php index 86c6f9ade8..f2f9aa7f85 100644 --- a/wp-admin/includes/upgrade.php +++ b/wp-admin/includes/upgrade.php @@ -1686,7 +1686,7 @@ function upgrade_network() { $tables = $wpdb->tables( 'global' ); // sitecategories may not exist. - if ( ! $this->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) { + if ( ! $wpdb->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) { unset( $tables['sitecategories'] ); } @@ -1715,7 +1715,7 @@ function upgrade_network() { $tables = $wpdb->tables( 'global' ); // sitecategories may not exist. - if ( ! $this->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) { + if ( ! $wpdb->get_var( "SHOW TABLES LIKE '{$tables['sitecategories']}'" ) ) { unset( $tables['sitecategories'] ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 55877ef2fd..73a4572330 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-RC2-33608'; +$wp_version = '4.3-RC2-33609'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.