Index: wp-config-sample.php
===================================================================
--- wp-config-sample.php	(revision 3426)
+++ wp-config-sample.php	(working copy)
@@ -14,8 +14,11 @@
 // to enable German language support.
 define ('WPLANG', '');
 
+// To disable persistent caching, remove the slashes from the following line.
+// define('DISABLE_CACHE', true);
+
 /* That's all, stop editing! Happy blogging. */
 
 define('ABSPATH', dirname(__FILE__).'/');
 require_once(ABSPATH.'wp-settings.php');
-?>
\ No newline at end of file
+?>
Index: wp-settings.php
===================================================================
--- wp-settings.php	(revision 3426)
+++ wp-settings.php	(working copy)
@@ -108,10 +108,6 @@
 else
 	require (ABSPATH . WPINC . '/cache.php');
 
-// For now, disable persistent caching by default.  To enable, comment out
-// the following line.
-//define('DISABLE_CACHE', true);
-
 wp_cache_init();
 
 $wp_filters = array();
@@ -230,4 +226,4 @@
 // Everything is loaded and initialized.
 do_action('init');
 
-?>
\ No newline at end of file
+?>
