Changeset 46499 for branches/4.3/src/wp-includes/http.php
- Timestamp:
- 10/14/2019 07:11:50 PM (7 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
- Property svn:mergeinfo changed
/trunk merged: 46474-46478,46483,46485
- Property svn:mergeinfo changed
-
branches/4.3/src/wp-includes/http.php
r37117 r46499 474 474 } else { 475 475 $ip = gethostbyname( $host ); 476 if ( $ip === $host ) // Error condition for gethostbyname() 477 $ip = false; 476 if ( $ip === $host ) { // Error condition for gethostbyname() 477 return false; 478 } 478 479 } 479 480 if ( $ip ) {
Note: See TracChangeset
for help on using the changeset viewer.