Changeset 42908 for branches/4.9
- Timestamp:
- 04/03/2018 03:34:19 PM (8 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-includes/http.php
r41573 r42908 531 531 532 532 if ( isset( $parsed_home['host'] ) ) { 533 $same_host = ( strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ) || 'localhost' === strtolower( $parsed_url['host'] ));533 $same_host = strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ); 534 534 } else { 535 535 $same_host = false;
Note: See TracChangeset
for help on using the changeset viewer.