Re: hidden forum
Do you want to hide the forum from everyone? Then you can use this:
$hidden_forums=array(5); // hide these forums, list by comma seperated number
If you want certain people to be able to access the forum, I believe this should work:
* If they are all adminstrators or moderators, you can use this: $hidden_forums[5]=array(‘administrator’,’moderator’);
* If you want only certain users (say, userID numbers 10 and 11) to be able to access forum #5, you can use this: $hidden_forums[5]=array(10,11);
Hope that helps…