Changeset 42912 for branches/4.5/src/wp-includes/http.php
- Timestamp:
- 04/03/2018 03:34:59 PM (8 years ago)
- Location:
- branches/4.5
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.5
-
branches/4.5/src/wp-includes/http.php
r37115 r42912 525 525 526 526 if ( isset( $parsed_home['host'] ) ) { 527 $same_host = ( strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ) || 'localhost' === strtolower( $parsed_url['host'] ));527 $same_host = strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ); 528 528 } else { 529 529 $same_host = false;
Note: See TracChangeset
for help on using the changeset viewer.