Changeset 46502 for branches/4.0/src/wp-includes/http.php
- Timestamp:
- 10/14/2019 07:20:01 PM (7 years ago)
- File:
-
- 1 edited
-
branches/4.0/src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.0/src/wp-includes/http.php
r37120 r46502 470 470 } else { 471 471 $ip = gethostbyname( $host ); 472 if ( $ip === $host ) // Error condition for gethostbyname() 473 $ip = false; 472 if ( $ip === $host ) { // Error condition for gethostbyname() 473 return false; 474 } 474 475 } 475 476 if ( $ip ) {
Note: See TracChangeset
for help on using the changeset viewer.