in the editpost.php
for security purposes... find both:
PHP Code:
if ($action=="deletepost") {
after that place:
PHP Code:
// +++++++ Start Checking Delete Post Permission [ Start ] +++++++
$perms=getpermissions();
if(!$perms[candeleteposts]) {
eval("standarderror(\"".gettemplate("error_cantdeleteposts")."\");");
exit;
}
// +++++++ Start Checking Delete Post Permissions [ End ] +++++++
I don't see what harm that could do and i've overlooked the coding and the first seems to be checking permissions and the second seems to carry out the actions... so adding to both is probably the best way to go until i can further look into it
g-force2k2