Changeset 36443 for branches/3.7/src/wp-includes/http.php
- Timestamp:
- 02/02/2016 01:03:05 PM (9 years ago)
- Location:
- branches/3.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 36435
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-includes/http.php
r30447 r36443 482 482 if ( $ip ) { 483 483 $parts = array_map( 'intval', explode( '.', $ip ) ); 484 if ( 127 === $parts[0] || 10 === $parts[0] 484 if ( 127 === $parts[0] || 10 === $parts[0] || 0 === $parts[0] 485 485 || ( 172 === $parts[0] && 16 <= $parts[1] && 31 >= $parts[1] ) 486 486 || ( 192 === $parts[0] && 168 === $parts[1] )
Note: See TracChangeset
for help on using the changeset viewer.