From fde6b84e1f5eb12f4e556af60b677e7dbd0801ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Fri, 7 Sep 2007 12:45:28 +0000 Subject: #164617 by catch: only suggest caching for production sites, so people developing their web sites can do so without nasty surprises --- modules/system/system.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/system/system.admin.inc') 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 ); -- cgit v1.2.3