WP_Date_Query: The inclusive logic should include all times within the date range.
props mboynes, oso96_2000, DrewAPicture. fixes #26653. Built from https://develop.svn.wordpress.org/trunk@28935 git-svn-id: http://core.svn.wordpress.org/trunk@28733 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7a47b7585d
commit
7e226aaa70
|
@ -48,6 +48,9 @@ class WP_Date_Query {
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
|
* @since 3.7.0
|
||||||
|
* @since 4.0.0 The $inclusive logic was updated to include all times within the date range.
|
||||||
|
*
|
||||||
* @param array $date_query {
|
* @param array $date_query {
|
||||||
* One or more associative arrays of date query parameters.
|
* One or more associative arrays of date query parameters.
|
||||||
*
|
*
|
||||||
|
@ -235,19 +238,23 @@ class WP_Date_Query {
|
||||||
|
|
||||||
$compare = $this->get_compare( $query );
|
$compare = $this->get_compare( $query );
|
||||||
|
|
||||||
|
$inclusive = ! empty( $query['inclusive'] );
|
||||||
|
|
||||||
|
// Assign greater- and less-than values.
|
||||||
$lt = '<';
|
$lt = '<';
|
||||||
$gt = '>';
|
$gt = '>';
|
||||||
if ( ! empty( $query['inclusive'] ) ) {
|
|
||||||
|
if ( $inclusive ) {
|
||||||
$lt .= '=';
|
$lt .= '=';
|
||||||
$gt .= '=';
|
$gt .= '=';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Range queries
|
// Range queries
|
||||||
if ( ! empty( $query['after'] ) )
|
if ( ! empty( $query['after'] ) )
|
||||||
$where_parts[] = $wpdb->prepare( "$column $gt %s", $this->build_mysql_datetime( $query['after'], true ) );
|
$where_parts[] = $wpdb->prepare( "$column $gt %s", $this->build_mysql_datetime( $query['after'], ! $inclusive ) );
|
||||||
|
|
||||||
if ( ! empty( $query['before'] ) )
|
if ( ! empty( $query['before'] ) )
|
||||||
$where_parts[] = $wpdb->prepare( "$column $lt %s", $this->build_mysql_datetime( $query['before'], false ) );
|
$where_parts[] = $wpdb->prepare( "$column $lt %s", $this->build_mysql_datetime( $query['before'], $inclusive ) );
|
||||||
|
|
||||||
// Specific value queries
|
// Specific value queries
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.0-alpha-20140630';
|
$wp_version = '4.0-alpha-20140701';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue