This module is a great tool for anybody that needs more control over permissions to respective pages. However, there is definitely a small issue about random menu items being created. The module call hook_menu_alter and adds the access callback and arguments to the pages than need finer-grained permissions. The problem is that if that particular page doesn't exist, or for some reason is disabled, etc. it makes a new menu item that has nothing but access callback and access arguments. I am trying to make the time to create a patch for this.........will update soon

Comments

Docc’s picture

Status: Active » Needs review

k just commited a fix to the dev. Let me know if it works for ya. Remember to rebuild the menu.

Docc’s picture

Assigned: Unassigned » Docc
Priority: Critical » Normal
rfreij’s picture

Appears Fixed....

rfreij’s picture

After further investigating....it appears your fix is preventing those permission settings from working at all now

rfreij’s picture

Status: Needs review » Needs work
Docc’s picture

It shouldnt matter but try replacing line 113

  if($items[$path]) {

with

  if(isset($items[$path])) {
Docc’s picture

Status: Needs work » Closed (cannot reproduce)