Changeset 45926 for trunk/src/wp-includes/class-wp-date-query.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-date-query.php
r45876 r45926 426 426 // 1. Checking day, month, year combination. 427 427 if ( ! wp_checkdate( $date_query['month'], $date_query['day'], $date_query['year'], sprintf( '%s-%s-%s', $date_query['year'], $date_query['month'], $date_query['day'] ) ) ) { 428 /* translators: 1: year, 2: month, 3: day of month */429 428 $day_month_year_error_msg = sprintf( 429 /* translators: 1: year, 2: month, 3: day of month */ 430 430 __( 'The following values do not describe a valid date: year %1$s, month %2$s, day %3$s.' ), 431 431 '<code>' . esc_html( $date_query['year'] ) . '</code>', … … 442 442 */ 443 443 if ( ! wp_checkdate( $date_query['month'], $date_query['day'], 2012, sprintf( '2012-%s-%s', $date_query['month'], $date_query['day'] ) ) ) { 444 /* translators: 1: month, 2: day of month */445 444 $day_month_year_error_msg = sprintf( 445 /* translators: 1: month, 2: day of month */ 446 446 __( 'The following values do not describe a valid date: month %1$s, day %2$s.' ), 447 447 '<code>' . esc_html( $date_query['month'] ) . '</code>',
Note: See TracChangeset
for help on using the changeset viewer.