From e9c36f969752488ca33da745b15805c489932a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Sat, 18 Aug 2007 20:08:33 +0000 Subject: #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 --- modules/system/system.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/system') 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 = '

'. 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.") .'

'; + $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.") .'

'; - $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) { -- cgit v1.2.3