MULTSITE must be true. see #11644

git-svn-id: http://svn.automattic.com/wordpress/trunk@12671 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-08 20:27:50 +00:00
parent 0c95b3b457
commit e068f48744
1 changed files with 1 additions and 1 deletions

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;