summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-08-18 20:08:33 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-08-18 20:08:33 +0000
commite9c36f969752488ca33da745b15805c489932a30 (patch)
treec2e8d5892964201be1d718a13a783159753449f1 /modules
parent8971add8493d49ed0e170a2521a62f2f0f39137c (diff)
downloadbrdo-e9c36f969752488ca33da745b15805c489932a30.tar.gz
brdo-e9c36f969752488ca33da745b15805c489932a30.tar.bz2
#161136 by hass: the previously aggressive caching incompatible hook_init parts were broken out to hook_boot, so this should be reflected in the help text and check
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index dfe151f61..9fc049644 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -669,9 +669,9 @@ function system_error_reporting_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 (init) 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 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>';
- $problem_modules = array_unique(array_merge(module_implements('init'), module_implements('exit')));
+ $problem_modules = array_unique(array_merge(module_implements('boot'), module_implements('exit')));
sort($problem_modules);
if (count($problem_modules) > 0) {