--- /Volumes/Feather/Downloads/ajax_slideshow/ajax_slideshow.module	2009-12-07 12:23:14.000000000 -0500
+++ /Volumes/Feather/Downloads/ajax_slideshow.patched/ajax_slideshow.module	2010-01-19 16:36:13.000000000 -0500
@@ -3,9 +3,6 @@
 /**
  * @file AJAX Slideshow
  */
- 
-
-define('AJAX_SLIDESHOW_PERM_ADMIN', 'administer ajax slideshow');
 
 /**
  * Implementation of hook_help()
@@ -21,8 +18,7 @@
  * Implementation of hook_perm()
  */
 function ajax_slideshow_perm() {
-  $perms = array();
-  return $perms;
+  return array('administer site configuration');
 }
 
 /**
@@ -46,7 +42,8 @@
     'description' => 'Setup the AJAX slideshow.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('ajax_slideshow_admin_settings'),
-    'access arguments' => array(AJAX_SLIDESHOW_PERM_ADMIN),
+    'access callback' => 'user_access',
+    'access arguments' => array('administer site configuration'),
     'type' => MENU_NORMAL_ITEM
   );
   
