Hmm here is the code for the user permissions, is it right?
PHP Code:
// ## Paul M Version for vB 3.5.0 ##
function getRoles($usergroupid) {
$groups = explode(',',$usergroupid);
/*
Edit the code below to set roles for different vB usergroups
Access is assigned in the following priority - based on all primary and secondary group membership.
1. Assign default access (which is set to NO access below).
2. If they are a member of an allowed group, grant USER access.
3. If they are a member of a staff group, grant ADMIN access.
4. If they are a member of a banned group, grant NO access.
*/
// Set default access
$userrole = ROLE_USER ;
// Set Allowed groups
if (in_array( 2 ,$groups)) $userrole = ROLE_USER;
if (in_array( 7 ,$groups)) $userrole = ROLE_USER;
//Set Staff groups
if (in_array( 5 ,$groups)) $userrole = ROLE_ADMIN;
if (in_array( 6 ,$groups)) $userrole = ROLE_ADMIN;
//Set Banned groups
if (in_array( 8 ,$groups)) $userrole = ROLE_NOBODY;
if (in_array( 9 ,$groups)) $userrole = ROLE_NOBODY;
return $userrole;
}