is it really that hard DZ?
Editpost.php..
code:
if($firstpost) {
if($forumpermissions['candeletethreads'] == "yes") {
if(ismod($fid, "candeleteposts") != "yes")
{
$db->query("UPDATE threads SET fid='$newfid' WHERE tid='$tid'");
updateforumcount($newfid);
}
else
{
deletethread($tid);
}
updateforumcount($fid);
redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);
}
else
{
nopermission();
}
}
Then you need ot add something similar to postings.php/moderaiton.php (whatever the file is in RC2).
Alternatively you can edit the deletethread function?