diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index a1b67a609d..6dbcf086d8 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -1801,7 +1801,7 @@ function global_terms( $term_id, $deprecated = '' ) { $global_id = $wpdb->insert_id; } } elseif ( $global_id != $term_id ) { - $local_id = $wpdb->get_row( $wpdb->prepare( "SELECT term_id FROM $wpdb->terms WHERE term_id = %d", $global_id ) ); + $local_id = $wpdb->get_var( $wpdb->prepare( "SELECT term_id FROM $wpdb->terms WHERE term_id = %d", $global_id ) ); if ( null != $local_id ) { global_terms( $local_id ); if ( 10 < $global_terms_recurse ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 554b41f209..be317d300f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32063'; +$wp_version = '4.2-beta4-32064'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.