Thanks for the nice words
ok, here you are:
open hacked editpost.php
find this:
PHP Code:
if ($postinfo[dateline]<(time()-($edittimelimit*60)) and $edittimelimit!=0) {
replace it with:
PHP Code:
if ($postinfo[dateline]<(time()-($edittimelimit*60)) and $edittimelimit!=0 and $postinfo[editable]!=4) {
then find this:
PHP Code:
for($i=0;$i<4;$i++) $editable[$i]=iif($postinfo[editable]==$i,"CHECKED","");
change it to:
PHP Code:
for($i=0;$i<5;$i++) $editable[$i]=iif($postinfo[editable]==$i,"CHECKED","");
then in template admineditpost:
find
<input type="radio" name="editable" $editable[1] value="1">Author |
before it add:
<input type="radio" name="editable" $editable[4] value="4">Author (no timelimit)|
i think this should be all