Changeset 55703 for trunk/src/wp-includes/rewrite.php
- Timestamp:
- 05/02/2023 03:43:03 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rewrite.php
r54996 r55703 601 601 // If the requesting file is the anchor of the match, 602 602 // prepend it to the path info. 603 if ( ! empty( $url ) && ( $url != $request ) && ( strpos( $match, $url ) === 0) ) {603 if ( ! empty( $url ) && ( $url != $request ) && str_starts_with( $match, $url ) ) { 604 604 $request_match = $url . '/' . $request; 605 605 }
Note: See TracChangeset
for help on using the changeset viewer.