Index: title_perms.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/title_perms/title_perms.module,v
retrieving revision 1.2
diff -u -p -r1.2 title_perms.module
--- title_perms.module	22 Jul 2008 18:48:25 -0000	1.2
+++ title_perms.module	28 Aug 2008 11:53:06 -0000
@@ -16,6 +16,7 @@
   function title_perms_perm() {
     $types = variable_get(EDT_TYPES, NULL);
     $perms = array();
+    $perms['Title_Menu'] = "administer title perms";
       if($types != NULL){
         foreach($types as $key => $val){
           $perms[$val] = "edit $val title"; 
@@ -56,7 +57,7 @@
       'description' => t('Select the content types on which to enable title editing permissions.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('title_perms_admin_execution'),
-      'access' => TRUE
+      'access' => user_access('administer title perms'),
       );
     }
     return $items;
