diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-16 23:20:43 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-16 23:20:43 +0000 |
commit | 8a6d8660cbee1ab28257f4c461a637bb1d6facc3 (patch) | |
tree | 370c852e44f380ef06cba1106a03f374bb6cbb59 /modules/system | |
parent | 9d975338222e1856d1a95f07c1490500ba584bc6 (diff) | |
download | brdo-8a6d8660cbee1ab28257f4c461a637bb1d6facc3.tar.gz brdo-8a6d8660cbee1ab28257f4c461a637bb1d6facc3.tar.bz2 |
#370454 follow-up by chx: Enhance comments to page cache simplification patch, and add in missing settings.default.php hunk.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 84de67946..33b773bcb 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1367,8 +1367,7 @@ function system_performance_settings() { '#type' => 'radios', '#title' => t('Page cache for anonymous users'), '#default_value' => $cache, - '#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended)'), CACHE_AGGRESSIVE => t('Aggressive (possible issues)')), - '#description' => t('Aggressive caching prevents modules from being loaded if the requested page can be retrieved from the cache. This may cause issues if you use modules that need to be loaded every request i.e. for writing data like statistics.') . $description, + '#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended)')), ); $period = drupal_map_assoc(array(0, 60, 180, 300, 600, 900, 1800, 2700, 3600, 10800, 21600, 32400, 43200, 86400), 'format_interval'); $period[0] = '<' . t('none') . '>'; |