From e068f48744c5cef69b9052e6150deac42b486fb2 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 8 Jan 2010 20:27:50 +0000 Subject: [PATCH] MULTSITE must be true. see #11644 git-svn-id: http://svn.automattic.com/wordpress/trunk@12671 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 19e2aa070..dd9d207ea 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -331,7 +331,7 @@ function is_admin() { * @return bool True if multisite is enabled, false otherwise. */ function is_multisite() { - if ( defined('MULTISITE') || defined('VHOST') ) + if ( ( defined('MULTISITE') && MULTISITE ) || defined('VHOST') ) return true; return false;