From 9e1e57f5a88146611c9e655e5d2001bc7db5858c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 16 Nov 2009 18:53:57 +0000 Subject: [PATCH] Make sure WP_CACHE is true. Props nacin. fixes #10602 git-svn-id: https://develop.svn.wordpress.org/trunk@12192 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index f2f6dad4bf..2194bdbac8 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'; /**