From fcb14d6104c920316b0fc53b2f64215935748ca5 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 26 Oct 2010 03:45:13 +0000 Subject: [PATCH] Also look for SUBDOMAIN_INSTALL in is_multisite(). props wpmuguru, fixes #14536 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@15968 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/load.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/load.php b/wp-includes/load.php index 37fa7d0840..5489f4a62f 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -647,7 +647,7 @@ function is_multisite() { if ( defined( 'MULTISITE' ) ) return MULTISITE; - if ( defined( 'VHOST' ) || defined( 'SUNRISE' ) ) + if ( defined( 'SUBDOMAIN_INSTALL' ) || defined( 'VHOST' ) || defined( 'SUNRISE' ) ) return true; return false;