I am reporting this as happening on Pages but it is global, I guess.
I have a DB and added a new group. The new group has permission on:
- The page attached to the Db
- The database
- The categories
The user can do everything:
- view the db tab on the navbar
- browse the DB
- browse any category
- read any record
- reply to any record
but the user can't create a new record. This is due to the way the canCreate method checks the permission, especially on this part:
/* Can we access the module */ if ( !static::_canAccessModule( $member ) ) { $return = FALSE; }
So far so good. The bug IMO is allowing the user to access the DB, access categories, read records, and reply to records if the user can't access the module at all.
Thank you.
Recommended Comments
There are no comments to display.