Hello,
Does anybody knows the syntax to get a specific permission for a specific usergroup (not for the active user).
eg the code below returns True/False for the Permission "Vote" in "Gallery" for the active user.
PHP Code:
if ($permissions['gallery'] & $vbulletin->bf_ugp['gallery']['vote'])
{
echo 'Yes';
} else {
echo 'No';
}
I want the same but (eg) for Usergroupid 12
Thank you