s'ok JJR
Squashed another bug folks. Involving editpost.php...
Find
$signature=iif($signature=="yes",1,0);
Add right below it
$hidden=iif($hidden=="yes",1,0);
Then find
PHP Code:
$DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',pagetext='".addslashes($message)."',allowsmilie='$allowsmilie',showsignature='$signature',iconid='$iconid'$editedbysql$attachmentsql WHERE postid='$postid'");
and replace it with
PHP Code:
$DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',pagetext='".addslashes($message)."',allowsmilie='$allowsmilie',showsignature='$signature',iconid='$iconid', hidden='$hidden'$editedbysql$attachmentsql WHERE postid='$postid'");
and reupload editpost.php. Should now work.