filburt, I put this hack in the newthread.php too, but I want to make sure I have to code in the right spot so as not too mess with anything else in there. I put the code for this hack below the following code:
PHP Code:
// check to see if signature required
if ($bbuserinfo[userid]!=0 and !$previewpost) {
if ($bbuserinfo[signature]!="") {
$signaturechecked="CHECKED";
} else {
$signaturechecked='';
}
if ($bbuserinfo[emailnotification]) {
$emailchecked="checked";
} else {
$emailchecked='';
}
}
Is that ok or do I need to move it somewhere else?