Changeset 61457 for trunk/src/wp-includes/IXR/class-IXR-client.php
- Timestamp:
- 01/09/2026 04:26:02 AM (2 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/IXR/class-IXR-client.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/IXR/class-IXR-client.php
r48238 r61457 32 32 $bits = parse_url($server); 33 33 $this->server = $bits['host']; 34 $this->port = isset($bits['port']) ? $bits['port'] :80;35 $this->path = isset($bits['path']) ? $bits['path'] :'/';34 $this->port = $bits['port'] ?? 80; 35 $this->path = $bits['path'] ?? '/'; 36 36 37 37 // Make absolutely sure we have a path
Note: See TracChangeset
for help on using the changeset viewer.