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:
parent
0c95b3b457
commit
e068f48744
|
@ -331,7 +331,7 @@ function is_admin() {
|
||||||
* @return bool True if multisite is enabled, false otherwise.
|
* @return bool True if multisite is enabled, false otherwise.
|
||||||
*/
|
*/
|
||||||
function is_multisite() {
|
function is_multisite() {
|
||||||
if ( defined('MULTISITE') || defined('VHOST') )
|
if ( ( defined('MULTISITE') && MULTISITE ) || defined('VHOST') )
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue