Quote:
Originally Posted by glen290
Hi Maria, noticed a small bug, dont know if anybody else has it, but it seems that the top posters this week and last week arent populating correctly, it shows a different user each time you log in with no posts, even though there had been, also not showing up new members either..
|
Till to post an update, open functions.php and change the line 62 & 63
From:
Code:
$starttime = ....
$endtime = ....
To:
Code:
// This Monday 00:01
$this_monday = mktime(0, 0, 0, date('n'), date('j'), date('Y')) - ((date('N')-1)*3600*24);
// Last Monday 00:01
// Weeks seconds (7 * 24 * 60 * 60) = 604800
$last_monday = $this_monday - 604800;
$starttime = $last_monday;
$endtime = $starttime + 604800;
ADDITION: ...Idiot me... or download the attached file and upload it to microcms/includes/
Maria