From 7843826140eaf6937731da3ebfaf0a5c5653d4ca Mon Sep 17 00:00:00 2001 From: nacin Date: Sun, 2 May 2010 22:18:36 +0000 Subject: [PATCH] Don't silence inclusion of advanced-cache.php for WP_DEBUG. fixes #13185. git-svn-id: http://svn.automattic.com/wordpress/trunk@14345 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 9cea140dc9..473f2c6cdd 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -57,7 +57,7 @@ wp_debug_mode(); // For an advanced caching plugin to use. Uses a static drop-in because you would only want one. if ( WP_CACHE ) - @include( WP_CONTENT_DIR . '/advanced-cache.php' ); + WP_DEBUG ? include( WP_CONTENT_DIR . '/advanced-cache.php' ) : @include( WP_CONTENT_DIR . '/advanced-cache.php' ); // Define WP_LANG_DIR if not set. wp_set_lang_dir();