Summary | the "auto create perms for group i am a member of" doesn't use the group driver |
Queue | Kronolith |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | |
Requester | romain.degez (at) smartjog (dot) com |
Created | 04/26/2006 (7116 days ago) |
Due | |
Updated | 04/28/2006 (7114 days ago) |
Assigned | |
Resolved | 04/28/2006 (7114 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ the "auto create perms for group i am a member of" doesn't use the group driver
Queue ⇒ Kronolith
The static method Group::getGroupMemberships(Auth::getAuth()) is
called instead of using an instance of the Group class.
So the base method is called insted of the extended one therefore the
configured group driver is ignored...
One must for instance use
$group = &Group::singleton();
$group_list = $group->getGroupMemberships(Auth::getAuth());