From a23c230c01b5f8c1fe00b34a6b009a526e9cdec3 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 3 Nov 2014 03:08:22 +0000 Subject: [PATCH] In `WP_Comment_Query`, declare `$query_vars` and `$comments` as properties. See #30224. Built from https://develop.svn.wordpress.org/trunk@30182 git-svn-id: http://core.svn.wordpress.org/trunk@30182 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 10 ++++++++++ wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index a81755d8c9..321529af40 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -259,6 +259,16 @@ class WP_Comment_Query { */ public $date_query = false; + /** + * @var array + */ + public $query_vars; + + /** + * @var array + */ + public $comments; + /** * Make private/protected methods readable for backwards compatibility. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 66c54eb441..b473ea9b1c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30181'; +$wp_version = '4.1-alpha-30182'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.