Index: maintenance_helper.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/maintenance_helper/maintenance_helper.info,v
retrieving revision 1.1
diff -u -p -r1.1 maintenance_helper.info
--- maintenance_helper.info	1 Aug 2008 15:47:36 -0000	1.1
+++ maintenance_helper.info	28 Dec 2009 04:48:56 -0000
@@ -1,4 +1,4 @@
 ; $Id: maintenance_helper.info,v 1.1 2008/08/01 15:47:36 greggles Exp $
 name = "Maintenance Helper"
 description = "Maintenance Helper that assists with performing migrations or other maintenance."
-core = "6.x"
+core = "5.x"
Index: maintenance_helper.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/maintenance_helper/maintenance_helper.module,v
retrieving revision 1.1
diff -u -p -r1.1 maintenance_helper.module
--- maintenance_helper.module	1 Aug 2008 15:47:36 -0000	1.1
+++ maintenance_helper.module	28 Dec 2009 04:48:56 -0000
@@ -3,17 +3,19 @@
 /**
  * Implementation of hook_menu().
  */
-function maintenance_helper_menu() {
+function maintenance_helper_menu($may_cache = FALSE) {
   $items = array();
 
-  $items['admin/settings/maintenance_helper'] = array(
-    'title' => t('Maintenance Helper'),
-    'description' => t('Configure the Maintenance Helper'),
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('maintenance_helper_admin_settings'),
-    'access arguments' => array('administer site configuration'),
-  );
-
+  if ($may_cache) {
+    $items[] = array(
+      'path' => 'admin/settings/maintenance_helper',
+      'title' => t('Maintenance Helper'),
+      'description' => t('Configure the Maintenance Helper'),
+      'callback' => 'drupal_get_form',
+      'callback arguments' => array('maintenance_helper_admin_settings'),
+      'access' => user_access('administer site configuration'),
+    );
+  }
   return $items;
 }
 
@@ -83,4 +85,4 @@ function maintenance_helper_admin_settin
   */
 
   return system_settings_form($form);
-}
\ No newline at end of file
+}
