Oops my bad =)
Change this
PHP Code:
if(( ismoderator($forum[forumid],"canmoderateposts") ||
$perms['ismoderator'] && $forum['allowmodaccess']) ||
$perms['cancontrolpanel'])
To
PHP Code:
if(( (ismoderator($forum[forumid],"canmoderateposts") ||
$perms['ismoderator']) && $forum['allowmodaccess']) ||
$perms['cancontrolpanel']) {
Needed a set of ()'s around the stuff before the && and that should work for you