Changes between Initial Version and Version 1 of Ticket #57272
- Timestamp:
- 12/05/2022 02:22:19 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #57272
- Property Keywords reporter-feedback added
-
Ticket #57272 – Description
initial v1 5 5 wp-includes/class-wp-query.php in this bloc 6 6 7 8 {{{#!php 9 <?php 7 10 if ( $q['m'] ) { 8 11 if(strlen( $q['m'] ) == 6){ 12 }}} 9 13 10 14 i changed the where statement : 11 15 16 {{{#!php 17 <?php 12 18 $where .= " AND {$wpdb->posts}.post_date <= '$end_date' AND {$wpdb->posts}.post_date >= '$start_date' "; 19 20 }}} 13 21 14 22 to : 15 23 24 {{{#!php 25 <?php 16 26 $where .= " AND {$wpdb->posts}.post_date <= '$end_date 23:59:59' AND {$wpdb->posts}.post_date >= '$start_date' "; 27 }}}