Changeset 46493 for branches/4.9/src/wp-includes/http.php
- Timestamp:
- 10/14/2019 06:38:34 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/src/wp-includes/http.php
r42908 r46493 542 542 } else { 543 543 $ip = gethostbyname( $host ); 544 if ( $ip === $host ) // Error condition for gethostbyname() 545 $ip = false; 544 if ( $ip === $host ) { // Error condition for gethostbyname() 545 return false; 546 } 546 547 } 547 548 if ( $ip ) {
Note: See TracChangeset
for help on using the changeset viewer.