Changeset 61463 for trunk/src/wp-includes/rest-api/class-wp-rest-server.php
- Timestamp:
- 01/10/2026 05:01:08 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r61429 r61463 365 365 366 366 if ( empty( $path ) ) { 367 if ( isset( $_SERVER['PATH_INFO'] ) ) { 368 $path = $_SERVER['PATH_INFO']; 369 } else { 370 $path = '/'; 371 } 367 $path = $_SERVER['PATH_INFO'] ?? '/'; 372 368 } 373 369
Note: See TracChangeset
for help on using the changeset viewer.