Quote:
Originally Posted by MrNase
Does this use the permission system so that usergroups only see the forums which they can access? 
|
Good catch. I added permissions check and updated instructions.
Changes from 1.00:
before this line in forumdisplay.php:
Code:
$relatedinfo = fetch_foruminfo($val);
add this:
Code:
$relatedperms = $bbuserinfo['forumpermissions']["$val"];
if (!($relatedperms & CANVIEW) AND $vboptions['hideprivateforums'])
{
continue;
}