Okay, I figured out what the problem(s) were. Or at least, I got it working now (I have essentially no knowledge in php or mysql, so this may have been obvious to others but it wasn't to me). In case anyone cares, in newreply.php this code was put in
Quote:
// auto bypass queueing for admins/mods
if (ismoderator($foruminfo[forumid])) {
$visible=1;
} elseif ($permissions['moderatepost']) {
$visible=0;
}
|
I had to take out the apostrophes around moderatepost (and moderatethread for newthread.php) in order for it to read the correct value from the table.
Even after that, the moderation didn't work on replies, just new threads.