summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-05 12:26:19 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-05 12:26:19 -0400
commit0de269041389c0ab521de30ca2b878d242f691b8 (patch)
treeaeb62793a78ee24db9f23e2502acc5dd2916c8e5 /app
parent4438e03c62962ecf6265eddcb3d2c6e761638cda (diff)
Increase date range for ics export
Diffstat (limited to 'app')
-rw-r--r--app/Controller/Ical.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/Ical.php b/app/Controller/Ical.php
index 8a7ed8b5..0129915e 100644
--- a/app/Controller/Ical.php
+++ b/app/Controller/Ical.php
@@ -78,8 +78,8 @@ class Ical extends Base
*/
private function renderCalendar(TaskFilter $filter, iCalendar $calendar)
{
- $start = $this->request->getStringParam('start', strtotime('-1 month'));
- $end = $this->request->getStringParam('end', strtotime('+2 months'));
+ $start = $this->request->getStringParam('start', strtotime('-2 month'));
+ $end = $this->request->getStringParam('end', strtotime('+6 months'));
// Tasks
if ($this->config->get('calendar_project_tasks', 'date_started') === 'date_creation') {