Boofo: i won't include that, because i think such wishes are personall wishes not used by many others, but i can tell you how to do it k?
template admineditpost
after
Code:
| <input type="radio" name="editable" $editable[0] value="0">Admins
add this:
Code:
| <input type="radio" name="editable" $editable[4] value="4">Author/Supermods/Admins
then in editpost.php
find:
PHP Code:
} else if($postinfo[editable]==2 and !ismoderator($threadinfo[forumid],"caneditposts")) {
$editpriority="Moderator/Supermod/Admin";
eval("standarderror(\"".gettemplate("error_editpriority")."\");");
exit;
}
add this clause after the }:
PHP Code:
else if($postinfo[editable]==4 and $postinfo[userid]!=$bbuserinfo[userid] and $getperms[cancontrolpanel]!=1 and $getperms[ismoderator]!=1) {
$editpriority="Author/Supermod/Admin";
eval("standarderror(\"".gettemplate("error_editpriority")."\");");
exit;
}
then replace in this line:
PHP Code:
for($i=0;$i<4;$i++) $editable[$i]=iif($postinfo[editable]==$i,"CHECKED","");
the $i<4 with $i<5
that should do the trick
hmm, ip-decoding?
i'll see what i can do, i have no idea how that works, i'll look into it