summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-09-07 12:45:28 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-09-07 12:45:28 +0000
commitfde6b84e1f5eb12f4e556af60b677e7dbd0801ec (patch)
tree439e813c1ed779b17049f85947e495664710a313
parenta6674e225b3d5d8b9ee15f8d503d49c1a6cbb56e (diff)
downloadbrdo-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.inc2
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
);