@sweetmercifulcr - Yes the query must be ran
@Xelation - I have noticed an error in the instructions
In the instructions (the last file change), it says:
Code:
=============
Replace with:
=============
if ((!$forumperms['canpostnew'] and $showlocks) or $forum['allowposting']==0) {
$forum['onoff'].='lock';
}
if ($forum['onimage']=="1") {
$onoffid="$forum[forumid]";
}else{
$onoffid="";
}
That is wrong...
It should be:
Code:
=============
Replace with:
=============
if ((!$forumperms['canpostnew'] and $showlocks) or $forum['allowposting']==0) {
$forum['onoff'].='lock';
}
if ($forum['onoffimage']=="1") {
$onoffid="$forum[forumid]";
}else{
$onoffid="";
}
That should correct your problem
Satan