I hope this is the last bug

Scott will update the hackfile when he is online but you can do this:
In admin/functions.php find
PHP Code:
AND threadid<>'$postinfo[threadid]'
in
function deletepost().
Delete it or copy it in a comment line.
Then open editpost.php and find
PHP Code:
$DB_site->query("DELETE FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
updatethreadcount($threadinfo[threadid]);
replace it with
PHP Code:
$otherattachs=$DB_site->query("SELECT attachmentid FROM post WHERE attachmentid=$postinfo[attachmentid]");
if ($DB_site->num_rows($otherattachs)==1) {
$DB_site->query("DELETE FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
updatethreadcount($threadinfo[threadid]);
}
If you find other inconsistencies, please tell me.