--- ../../../software/drupal/CVS/contributions/modules/webserver_auth/webserver_auth.module	2008-04-21 17:43:26.000000000 +0100
+++ webserver_auth/webserver_auth.module	2008-05-22 23:38:25.000000000 +0100
@@ -1,18 +1,17 @@
 <?php
 // $Id: webserver_auth.module,v 1.20 2008/04/21 16:43:26 weitzman Exp $
 
-function webserver_auth_menu($may_cache) {
-  if ($may_cache) {
-    $items[] = array(
-      'title' => t('Webserver authentication'),
-      'path' => "admin/settings/webserver_auth",
-      'callback' => "drupal_get_form",
-      'callback arguments' => array('webserver_auth_settings'),
-      'description' => t('Configure a domain for generating email addresses. Optional.'),
+
+function webserver_auth_menu() {
+  $items = array();    
+  $items['admin/settings/webserver_auth'] = array(
+    'title' => 'Webserver authentication',
+    'description' => 'Configure a domain for generating email addresses. Optional.',
+    'page callback' => "drupal_get_form",
+    'page arguments' => array('webserver_auth_settings'),
+    'access arguments' => array('administer site configuration'),
     );
-  }
   return $items;
-
 }
 
 function webserver_auth_init() {
