From 8e4022fe6d2a0ab552c690193dfb28413c8ff935 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 27 Apr 2009 02:07:48 +0000 Subject: #359391 by kresimir: Clarify that various caching modes are 'page' caching modes. --- modules/system/system.admin.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 5f45c36a2..e7f51ff18 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1287,16 +1287,16 @@ function system_logging_settings() { */ function system_performance_settings() { - $description = '

' . t("The normal cache mode is suitable for most sites and does not cause any side effects. The aggressive cache mode causes Drupal to skip the loading (boot) and unloading (exit) of enabled modules when serving a cached page. This results in an additional performance boost but can cause unwanted side effects.") . '

'; + $description = '

' . t("The normal page cache mode is suitable for most sites and does not cause any side effects. The aggressive page cache mode causes Drupal to skip the loading (boot) and unloading (exit) of enabled modules when serving a cached page. This results in an additional performance boost but can cause unwanted side effects.") . '

'; $problem_modules = array_unique(array_merge(module_implements('boot'), module_implements('exit'))); sort($problem_modules); if (count($problem_modules) > 0) { - $description .= '

' . t('The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules', array('%modules' => implode(', ', $problem_modules))) . '.

'; + $description .= '

' . t('The following enabled modules are incompatible with aggressive page caching mode and will not function properly: %modules', array('%modules' => implode(', ', $problem_modules))) . '.

'; } else { - $description .= '

' . t('Currently, all enabled modules are compatible with the aggressive caching policy. Please note, if you use aggressive caching and enable new modules, you will need to check this page again to ensure compatibility.') . '

'; + $description .= '

' . t('Currently, all enabled modules are compatible with the aggressive page caching policy. Please note, if you use aggressive page caching and enable new modules, you will need to check this setting again to ensure compatibility.') . '

'; } $form['page_cache'] = array( '#type' => 'fieldset', @@ -1307,7 +1307,7 @@ function system_performance_settings() { $form['page_cache']['cache'] = array( '#type' => 'radios', - '#title' => t('Caching mode'), + '#title' => t('Page caching mode'), '#default_value' => variable_get('cache', CACHE_DISABLED), '#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