Here is the code that I came up with to work for this:
PHP Code:
if (!$forum['allowguestpostview'] && !$bbuserinfo['userid']) {
eval("standarderror(\"".gettemplate("error_noguestviewpost")."\");");
} else if (!$forum['allowguestpostview'] && in_array($bbuserinfo['usergroupid'], array(3, 4))) {
eval("standarderror(\"".gettemplate("error_nowaitviewpost")."\");");
exit;
}
It works but I need to know if there is a cleaner way to do this. Anyone?