Make sure WP_CACHE is true. Props nacin. fixes #10602
git-svn-id: http://svn.automattic.com/wordpress/trunk@12192 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6df4481b33
commit
a2c12cb66b
|
@ -217,7 +217,7 @@ if ( defined('WP_DEBUG') && WP_DEBUG == true ) {
|
|||
}
|
||||
|
||||
// For an advanced caching plugin to use, static because you would only want one
|
||||
if ( defined('WP_CACHE') )
|
||||
if ( defined('WP_CACHE') && WP_CACHE )
|
||||
@include WP_CONTENT_DIR . '/advanced-cache.php';
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue