diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-27 02:07:48 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-27 02:07:48 +0000 |
commit | 8e4022fe6d2a0ab552c690193dfb28413c8ff935 (patch) | |
tree | 0a1da30c789353b8b61e53a41a9430117b73155c /modules | |
parent | c7d8e2060acd75e29b381519d3a4231495d4cbf6 (diff) | |
download | brdo-8e4022fe6d2a0ab552c690193dfb28413c8ff935.tar.gz brdo-8e4022fe6d2a0ab552c690193dfb28413c8ff935.tar.bz2 |
#359391 by kresimir: Clarify that various caching modes are 'page' caching modes.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.admin.inc | 8 |
1 files changed, 4 insertions, 4 deletions
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 = '<p>' . 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.") . '</p>'; + $description = '<p>' . 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.") . '</p>'; $problem_modules = array_unique(array_merge(module_implements('boot'), module_implements('exit'))); sort($problem_modules); if (count($problem_modules) > 0) { - $description .= '<p>' . t('<strong class="error">The following enabled modules are incompatible with aggressive mode caching and will not function properly: %modules</strong>', array('%modules' => implode(', ', $problem_modules))) . '.</p>'; + $description .= '<p>' . t('<strong class="error">The following enabled modules are incompatible with aggressive page caching mode and will not function properly: %modules</strong>', array('%modules' => implode(', ', $problem_modules))) . '.</p>'; } else { - $description .= '<p>' . t('<strong class="ok">Currently, all enabled modules are compatible with the aggressive caching policy.</strong> Please note, if you use aggressive caching and enable new modules, you will need to check this page again to ensure compatibility.') . '</p>'; + $description .= '<p>' . t('<strong class="ok">Currently, all enabled modules are compatible with the aggressive page caching policy.</strong> Please note, if you use aggressive page caching and enable new modules, you will need to check this setting again to ensure compatibility.') . '</p>'; } $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 |