- Issue created by @dwahba
these two lines
$dates['start'] = date("Y-M-d", $this_year_start);
$dates['end'] = date("Y-M-d", $this_year_end);
need to be:
$dates['start'] = date("Y-M-d", $last_year_start);
$dates['end'] = date("Y-M-d", $last_year_end);
Active
1.3
Code