From 0216a3136b386ba05e2ce8339942f8490aca0f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20B=C3=BChler?= Date: Wed, 8 Mar 2023 05:28:42 +0100 Subject: [PATCH] Use the appropriate config for the start column in user iCal export --- app/Controller/ICalendarController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controller/ICalendarController.php b/app/Controller/ICalendarController.php index 38475a32f..d0af5e72e 100644 --- a/app/Controller/ICalendarController.php +++ b/app/Controller/ICalendarController.php @@ -31,7 +31,7 @@ class ICalendarController extends BaseController $startRange = strtotime('-2 months'); $endRange = strtotime('+6 months'); - $startColumn = $this->configModel->get('calendar_project_tasks', 'date_started'); + $startColumn = $this->configModel->get('calendar_user_tasks', 'date_started'); $calendar = new iCalendar('Kanboard'); $calendar->setName($user['name'] ?: $user['username']);