diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-07 12:45:28 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-07 12:45:28 +0000 |
commit | fde6b84e1f5eb12f4e556af60b677e7dbd0801ec (patch) | |
tree | 439e813c1ed779b17049f85947e495664710a313 | |
parent | a6674e225b3d5d8b9ee15f8d503d49c1a6cbb56e (diff) | |
download | brdo-fde6b84e1f5eb12f4e556af60b677e7dbd0801ec.tar.gz brdo-fde6b84e1f5eb12f4e556af60b677e7dbd0801ec.tar.bz2 |
#164617 by catch: only suggest caching for production sites, so people developing their web sites can do so without nasty surprises
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index ff9dfa91a..e2851cf5c 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1155,7 +1155,7 @@ function system_performance_settings() { '#type' => 'radios', '#title' => t('Caching mode'), '#default_value' => variable_get('cache', CACHE_DISABLED), - '#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended, no side effects)'), CACHE_AGGRESSIVE => t('Aggressive (experts only, possible side effects)')), + '#options' => array(CACHE_DISABLED => t('Disabled'), CACHE_NORMAL => t('Normal (recommended for production sites, no side effects)'), CACHE_AGGRESSIVE => t('Aggressive (experts only, possible side effects)')), '#description' => $description ); |