squawell,
No, there should be no need to make any changes in editpost.php because the attachment options only appear if a user has already attached something.
But if you've installed another hack which allows you to add attachments via editing posts then this should fix it:
in editpost.php find:
Code:
eval("\$editattachment = \"".gettemplate("editpost_attachment")."\";");
replace with:
Code:
if ($bbuserinfo[posts] < $minpostuploadattach) {
eval("\$editattachment = \"".gettemplate("notnuffpost_attachment")."\";");
}else{
eval("\$editattachment = \"".gettemplate("editpost_attachment")."\";");
}
I haven't looked at the other hack or tried the code above but it should work.