If you want the description box to not show when the edit time is up but only show for an admin, change this:
PHP Code:
$description="";
$descriptionbit="";
if ($getpost[postid]==$postid) {
$isfirst=1;
$description=$threadinfo[description];
eval("\$descriptionbit = \"".gettemplate("editpost_description")."\";");
} else {
$isfirst=0;
}
if ($isfirst and $postinfo[title]=="" and $postinfo[dateline]+$editthreadtitlelimit*60>time()) {
$postinfo[title]=$threadinfo[title];
}
to this:
PHP Code:
$description="";
$descriptionbit="";
if ($getpost[postid]==$postid) {
$isfirst=1;
if ($postinfo[dateline]+$editthreadtitlelimit*60>time() or $bbuserinfo[usergroupid]==6) {
$description=$threadinfo[description];
eval("\$descriptionbit = \"".gettemplate("editpost_description")."\";");
}
} else {
$isfirst=0;
}
if ($isfirst and $postinfo[title]=="" and $postinfo[dateline]+$editthreadtitlelimit*60>time()) {
$postinfo[title]=$threadinfo[title];
}