From b2e373d64db05aac38e11f7cc5b121a80e5aaddb Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 14 Dec 2015 02:08:26 +0000 Subject: [PATCH] Correct the name of the `@param` doc for `WP_Query::parse_tax_query()`. See #32246 Built from https://develop.svn.wordpress.org/trunk@35908 git-svn-id: http://core.svn.wordpress.org/trunk@35872 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 55f617219e..ee0fc97862 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1882,7 +1882,7 @@ class WP_Query { * @access protected * @since 3.1.0 * - * @param array &$q The query variables + * @param array $q The query variables. Passed by reference. */ public function parse_tax_query( &$q ) { if ( ! empty( $q['tax_query'] ) && is_array( $q['tax_query'] ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index b0ef396163..4c9b05e010 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35907'; +$wp_version = '4.5-alpha-35908'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.