Boofo - Actually I did. I just updated the text file with the new code. For anyone who's already installed this, you can just look for this code:
PHP Code:
$datecut = mktime(0,0,0,date("m"), date("d"), date("y"));
And replace it with this:
PHP Code:
$datecut = mktime(0,0,0,date('m',"$ourtimenow"), date('d',"$ourtimenow"), date('y',"$ourtimenow"));
There's no good way to have it go by the user's time offset, but this does at least go by your forum's default time.
corsacrazy - You would just need to look for this code:
PHP Code:
$topposter=$DB_site->query_first("SELECT username,posts,userid FROM user ORDER BY posts desc LIMIT 1");
And replace it with this:
PHP Code:
$topposter=$DB_site->query_first("SELECT username,posts,userid FROM user WHERE userid!='XX' ORDER BY posts desc LIMIT 1");
(Replace XX in that query with the user's id)