Changeset 60447 for trunk/src/wp-includes/rewrite.php
- Timestamp:
- 07/11/2025 01:14:57 PM (10 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rewrite.php
r59059 r60447 413 413 // This is the potentially clashing slug. 414 414 $value = ''; 415 if ( $compare &&array_key_exists( $compare, $query_vars ) ) {415 if ( array_key_exists( $compare, $query_vars ) ) { 416 416 $value = $query_vars[ $compare ]; 417 417 } … … 461 461 462 462 // If we've gotten to this point, we have a slug/date clash. First, adjust for nextpage. 463 if ( '' !== $maybe_page ) { 464 $query_vars['page'] = (int) $maybe_page; 465 } 463 $query_vars['page'] = $maybe_page; 466 464 467 465 // Next, unset autodetected date-related query vars.
Note: See TracChangeset
for help on using the changeset viewer.