Index: noie6.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/noie6/noie6.module,v
retrieving revision 1.1
diff -u -p -r1.1 noie6.module
--- noie6.module	25 Jun 2010 16:59:26 -0000	1.1
+++ noie6.module	26 Jun 2010 01:04:48 -0000
@@ -42,6 +42,14 @@ function noie6_perm() {
 }
 
 /**
+ * Access check for the noie6 administration page
+ * @return boolean
+ */
+function noie6_admin_page_access() {
+  return user_access('access administration pages') || user_access('administer noie6');
+}
+
+/**
  * Implementation of hook_menu().
  */
 function noie6_menu() {
@@ -52,7 +60,8 @@ function noie6_menu() {
     'description' => 'Modify this settings for a better fit with your design. Remember you can also style the module by CSS.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('noie6_admin_settings'),
-    'access arguments' => array('access administration pages administer noie6'),
+    'access callback' => 'noie6_admin_page_access',
+    'access arguments' => array(1),
     'type' => MENU_NORMAL_ITEM,
    );
   
