From a2c12cb66b280f786db28ed294cbff5be4d71747 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 16 Nov 2009 18:53:57 +0000 Subject: [PATCH] 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 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index f2f6dad4b..2194bdbac 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -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'; /**