Quote:
Originally posted by Broekie
I got a parse error on line 30 - the line with if (!ismoderator($forumid)) AND ($forumid=Y OR $forumid=Z))
and after I replaced $forumid with $foruminfo[forumid] the parse error on that line was solved
The parse error I got after that was on line 31, and that was indeed due to the missing (
|
IMO this is because of ) problem..
Try to reapply:
PHP Code:
if (!ismoderator($forumid) AND ($forumid=1 OR $forumid=2))
Does this line give you a parse error? I think not..