### Eclipse Workspace Patch 1.0
#P drupal-cvs
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.511
diff -u -r1.511 system.module
--- modules/system/system.module	20 Jul 2007 05:44:13 -0000	1.511
+++ modules/system/system.module	22 Jul 2007 07:40:08 -0000
@@ -667,9 +667,9 @@
 
 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) {
