mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
HTTP: Don't treat localhost
as same host by default.
Built from https://develop.svn.wordpress.org/trunk@42894 git-svn-id: http://core.svn.wordpress.org/trunk@42724 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
31a4369366
commit
8043638596
@ -543,7 +543,7 @@ function wp_http_validate_url( $url ) {
|
|||||||
$parsed_home = @parse_url( get_option( 'home' ) );
|
$parsed_home = @parse_url( get_option( 'home' ) );
|
||||||
|
|
||||||
if ( isset( $parsed_home['host'] ) ) {
|
if ( isset( $parsed_home['host'] ) ) {
|
||||||
$same_host = ( strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] ) || 'localhost' === strtolower( $parsed_url['host'] ) );
|
$same_host = strtolower( $parsed_home['host'] ) === strtolower( $parsed_url['host'] );
|
||||||
} else {
|
} else {
|
||||||
$same_host = false;
|
$same_host = false;
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0-alpha-42893';
|
$wp_version = '5.0-alpha-42894';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user