From 485ebf94932a89ab9405ea80acbf03aac63d916a Mon Sep 17 00:00:00 2001 From: Jochen Mandl Date: Thu, 25 Feb 2016 21:12:42 +0100 Subject: [PATCH] Issues 386 Neuer Termin/Job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Es wird beim Klicken auf "Neuer Termin/Job" der zuvor ausgewählte Tag, als default eingetragen. closed #386 --- lib/calendar/calendars_controller_screen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/calendar/calendars_controller_screen.php b/lib/calendar/calendars_controller_screen.php index 1dc17c8..a1bc41c 100644 --- a/lib/calendar/calendars_controller_screen.php +++ b/lib/calendar/calendars_controller_screen.php @@ -613,7 +613,7 @@ public function getProjectEventPage($p = []) $s1_content = ''; $s2_content = ''; - $request_day = rex_request('day', 'string'); // 20112019 Ymd + $request_day = $this->getSelectDay(); // 20112019 Ymd if (!$day = DateTime::createFromFormat('Ymd', $request_day)) { $day = new DateTime(); } @@ -695,7 +695,7 @@ public function getProjectJobPage($p = []) $s1_content = ''; $s2_content = ''; - $request_day = rex_request('day', 'string'); // 20112019 Ymd + $request_day = $this->getSelectDay(); // 20112019 Ymd if (!$day = DateTime::createFromFormat('Ymd', $request_day)) { $day = new DateTime(); }