MULTSITE must be true. see #11644

git-svn-id: https://develop.svn.wordpress.org/trunk@12671 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-01-08 20:27:50 +00:00
parent 6a4dae4be0
commit f0761d7cf6

View File

@ -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;