Make WordPress Core

Ticket #2107: cachemenot.diff

File cachemenot.diff, 1.1 KB (added by skeltoac, 21 years ago)
  • wp-config-sample.php

     
    1414// to enable German language support.
    1515define ('WPLANG', '');
    1616
     17// To disable persistent caching, remove the slashes from the following line.
     18// define('DISABLE_CACHE', true);
     19
    1720/* That's all, stop editing! Happy blogging. */
    1821
    1922define('ABSPATH', dirname(__FILE__).'/');
    2023require_once(ABSPATH.'wp-settings.php');
    21 ?>
    22  No newline at end of file
     24?>
  • wp-settings.php

     
    108108else
    109109        require (ABSPATH . WPINC . '/cache.php');
    110110
    111 // For now, disable persistent caching by default.  To enable, comment out
    112 // the following line.
    113 //define('DISABLE_CACHE', true);
    114 
    115111wp_cache_init();
    116112
    117113$wp_filters = array();
     
    230226// Everything is loaded and initialized.
    231227do_action('init');
    232228
    233 ?>
    234  No newline at end of file
     229?>