Quote:
Originally Posted by Silvio
Now I would need to grant access to both users -> that have primary Groupid 13 or those that have primary Groupid 2 but also a secondary groupid13. At same time I do not want to grant Access to User with Only primary Groupid 2.
|
Okay, Assuming I have understood this correctly then all you need to do is this ;
PHP Code:
'users' => array( 13 ) , // vBulletin usergroups allowed standard access to chat.
The only reason I can think of that this didn't work is because of the other change you made - restore that back to this ;
PHP Code:
foreach ($GLOBALS['vbulletin']['users'] as $group) if (in_array($group,$groups)) $userrole = ROLE_USER; // Check Allowed groups
I honestly can't understand why you edited that or what you were trying to do.
By simply using the original file and changing the standard access group to 13, the following will happen ;
Primary = 2 Secondary = none : No Access
Primary = 2 Secondary = 13 : Access allowed
Primary = 13 Secondary = none : Access Allowed
Which appears to be what you described above.