will the real host please step forward, fixes #13594
git-svn-id: http://svn.automattic.com/wordpress/trunk@15037 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8b50d044bd
commit
58d8b1383d
|
@ -43,7 +43,7 @@ function network_domain_check() {
|
|||
* @return bool Whether subdomain install is allowed
|
||||
*/
|
||||
function allow_subdomain_install() {
|
||||
$domain = preg_replace( '|https?://[^/]|', '', get_option( 'siteurl' ) );
|
||||
$domain = preg_replace( '|https?://([^/]+)|', '$1', get_option( 'siteurl' ) );
|
||||
if( false !== strpos( $domain, '/' ) || 'localhost' == $domain || preg_match( '|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|', $domain ) )
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue