by joaquim » Sat Sep 29, 2007 4:37 am
If you have the missfortune to publish some issue on the first second 00:00:00 of any year
it is not computed in the statistics page in any year. This is not so unlikely if one is making up the dates. The wrong code is in
pages/manager/StatisticsHandler.inc.php
where it says
$fromDate = mktime(0, 0, 1, 1, 1, $statisticsYear);
it should say
$fromDate = mktime(0, 0, 0, 1, 1, $statisticsYear);
Best regards,
Joaquim