HTTP: `0.1.2.3` is not a valid IP.
Built from https://develop.svn.wordpress.org/trunk@36435 git-svn-id: http://core.svn.wordpress.org/trunk@36402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e19a8796fd
commit
f65de8ec9f
|
@ -536,7 +536,7 @@ function wp_http_validate_url( $url ) {
|
||||||
}
|
}
|
||||||
if ( $ip ) {
|
if ( $ip ) {
|
||||||
$parts = array_map( 'intval', explode( '.', $ip ) );
|
$parts = array_map( 'intval', explode( '.', $ip ) );
|
||||||
if ( 127 === $parts[0] || 10 === $parts[0]
|
if ( 127 === $parts[0] || 10 === $parts[0] || 0 === $parts[0]
|
||||||
|| ( 172 === $parts[0] && 16 <= $parts[1] && 31 >= $parts[1] )
|
|| ( 172 === $parts[0] && 16 <= $parts[1] && 31 >= $parts[1] )
|
||||||
|| ( 192 === $parts[0] && 168 === $parts[1] )
|
|| ( 192 === $parts[0] && 168 === $parts[1] )
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-alpha-36434';
|
$wp_version = '4.5-alpha-36435';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue