Wouldn't it be better to add "newpost_closethread" to the $templatesused variable at the top of newreply.php, to save one SQL query on every reply page?
Also, to preserve the checkbox's state when previewing post, I would put this in newreply.php:
PHP Code:
if ($permissions['canopenclose']==1) {
$closethreadchecked = ($closethread) ? " checked" : "";
eval("\$closethreadbox = \"".gettemplate("newpost_closethread")."\";");
} else {
$closethreadbox="";
}
And this as the newpost_closethread template:
Quote:
<br><input type="checkbox" name="closethread" value="yes"$closethreadchecked> <b>Close Thread After Reply</b>
|