Changeset 46504 for branches/3.8/src/wp-includes/http.php
- Timestamp:
- 10/14/2019 07:29:52 PM (6 years ago)
- Location:
- branches/3.8
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/http.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
- Property svn:mergeinfo changed
/trunk merged: 46474-46478,46483,46485
- Property svn:mergeinfo changed
-
branches/3.8/src/wp-includes/http.php
r37122 r46504 477 477 } else { 478 478 $ip = gethostbyname( $host ); 479 if ( $ip === $host ) // Error condition for gethostbyname() 480 $ip = false; 479 if ( $ip === $host ) { // Error condition for gethostbyname() 480 return false; 481 } 481 482 } 482 483 if ( $ip ) {
Note: See TracChangeset
for help on using the changeset viewer.