Changeset 46500 for branches/4.2/src/wp-includes/http.php
- Timestamp:
- 10/14/2019 07:14:31 PM (6 years ago)
- Location:
- branches/4.2
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2
- Property svn:mergeinfo changed
/trunk merged: 46474-46478,46483,46485
- Property svn:mergeinfo changed
-
branches/4.2/src/wp-includes/http.php
r37118 r46500 471 471 } else { 472 472 $ip = gethostbyname( $host ); 473 if ( $ip === $host ) // Error condition for gethostbyname() 474 $ip = false; 473 if ( $ip === $host ) { // Error condition for gethostbyname() 474 return false; 475 } 475 476 } 476 477 if ( $ip ) {
Note: See TracChangeset
for help on using the changeset viewer.