Your (Broekie) code is as follows:
Code:
// To make sure that not logged in users can't view threads
if ($bbuserinfo['usergroupid']==1) {
eval("standarderror(\"".gettemplate("error_threadviewnotloggedin")."\");");
exit;
}
// End of code
If that were changed to:
Code:
// To make sure that not logged in users can't view threads
if ($bbuserinfo['usergroupid']!=2) {
eval("standarderror(\"".gettemplate("error_threadviewnotloggedin")."\");");
exit;
}
// End of code
Where 2 is not actually 2 but the group that I want to see that board (a new group that I created)....
Would that work? Does != work in PHP or am I confusing it with ASP? <> perhaps? Anyone? Bueller?
Cygnus