Skip to content
Snippets Groups Projects
Commit cb1523e4 authored by Tim Steiner's avatar Tim Steiner
Browse files

Workaround for ZF bug where adding a month doesn't add anything.... :(

parent b4e3cac0
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,10 @@ class ReportsController extends Nmc_Controller_Action
$startDate = $date;
$endDate = clone $date;
$endDate->addDay(1);
$endDate->addMonth(1);
$endDate->subSecond(1);
$requests = Requests::getInstance()->fetchRequestsInDateRange($startDate, $endDate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment