From 80915aaf16120e7145d689807a40f21dba78756e Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 8 Jan 2015 05:54:44 +0000 Subject: [PATCH] `WP_Query->parse_tax_query()` - for BC, this method is not marked as protected. See [28987]. It needs an access modifier, it shall have `public`. The comment remains. See #30799. Built from https://develop.svn.wordpress.org/trunk@31081 git-svn-id: http://core.svn.wordpress.org/trunk@31062 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index e38b372e00..b60e37fd79 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1827,7 +1827,7 @@ class WP_Query { * * @param array &$q The query variables */ - function parse_tax_query( &$q ) { + public function parse_tax_query( &$q ) { if ( ! empty( $q['tax_query'] ) && is_array( $q['tax_query'] ) ) { $tax_query = $q['tax_query']; } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index 34d8005e6f..2e33442c42 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31079'; +$wp_version = '4.2-alpha-31081'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.