From da5b68a17ea7879504043e8c43d6ea02549c3440 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 6 Jan 2015 03:36:21 +0000 Subject: [PATCH] Fix 'compare' parameter description in WP_Date_Query. props dlh. fixes #30925. Built from https://develop.svn.wordpress.org/trunk@31057 git-svn-id: http://core.svn.wordpress.org/trunk@31038 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/date.php | 9 ++++----- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/wp-includes/date.php b/wp-includes/date.php index 51c5d84b9d..b1fd0054fa 100644 --- a/wp-includes/date.php +++ b/wp-includes/date.php @@ -78,11 +78,10 @@ class WP_Date_Query { * the $default_column parameter. Default 'post_date'. Accepts 'post_date', * 'post_date_gmt', 'post_modified','post_modified_gmt', 'comment_date', * 'comment_date_gmt'. - * @type string $compare Optional. The comparison operator. - * Accepts '=', '!=', '>', '>=', '<', '<=', 'IN', 'NOT IN'. Default '='. - * 'BETWEEN', 'NOT BETWEEN'. - * @type string $relation Optional. The boolean relationship between the date queries. - * Accepts 'OR', 'AND'. Default 'OR'. + * @type string $compare Optional. The comparison operator. Default '='. + * Accepts '=', '!=', '>', '>=', '<', '<=', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN'. + * @type string $relation Optional. The boolean relationship between the date queries. Default 'OR'. + * Accepts 'OR', 'AND'. * @type array { * Optional. An array of first-order clause parameters, or another fully-formed date query. * diff --git a/wp-includes/version.php b/wp-includes/version.php index a9f2f2f798..a23e17d8ed 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31056'; +$wp_version = '4.2-alpha-31057'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.