Reviewed & tested by the community
Project:
UserLoginBar
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jan 2009 at 21:49 UTC
Updated:
27 Oct 2010 at 07:19 UTC
Jump to comment: Most recent file
Comments
Comment #1
sudeepg commentedTry clearing the cache at performance (admin/settings/performance)? I'll look deeper into the problem.
Comment #2
Witch commentedSame problem here
Comment #3
pukku commentedThis is because the implementation of hook_menu provides the wrong access settings.
In userloginbar.module, in
function userloginbar_menu, There is a line:'access arguments' => array('administrator content'),This permission doesn't exist. This should be altered to look like:
'access arguments' => array('administer site configuration'),(or whatever permission you think it should be set to).
Comment #4
rfayHere's a patch for this. It creates a permission and uses that permission.
Comment #5
scotwith1tseems to work no problem.