--- colorpicker_example.module	2007-11-04 00:54:49.000000000 -0400
+++ colorpicker_example.moduleNEW	2009-02-09 20:21:59.000000000 -0500
@@ -5,17 +5,16 @@
 /*
  * Implementation of hook_menu().
  */
-function colorpicker_example_menu($may_cache) {
+function colorpicker_example_menu() {
   $items = array();
-  if (!$may_cache) {
-    $items[] = array(
-     'title' => t('Color Picker Example'),
-     'path' => 'colorpicker/example',
-     'description' => t('An example of the color picker in use.'),
-     'callback' => 'colorpicker_example_callback',
-     'access' => user_access('access colorpicker example') ,
-      );
-  }
+
+  $items['colorpicker/example'] = array(
+   'title' => t('Color Picker Example'),
+   'description' => t('An example of the color picker in use.'),
+   'page callback' => 'colorpicker_example_callback',
+   'access arguments' => array('access colorpicker example') ,
+    );
+
   return $items;
 }
 
