This may have been asked, but I couldn't find it, does the permissions check for secondary usergroups. I looked quickly and it didn't appear to. In quiz.php there are these line:
PHP Code:
// Assume Your Usergroup Has Access To Participate In A Quiz
$Your_ID = $bbuserinfo['usergroupid'];
$Perms = unserialize($Quiz['q_perms']);
if(!in_array($Your_ID,$Perms['Participate'])){
RunError("Your usergroup does not have access to participate in this particular quiz.");
}
That is were it checks for the permissions? Which means if you use secondary usergroups it wouldn't work? Is that right or no.