Skip to content

Commit

Permalink
Issues 386 Neuer Termin/Job
Browse files Browse the repository at this point in the history
- Es wird beim Klicken auf "Neuer Termin/Job" der zuvor ausgewählte
  Tag, als default eingetragen.

closed yakamara#386
  • Loading branch information
frag-seb committed Feb 25, 2016
1 parent 25f185e commit 485ebf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/calendar/calendars_controller_screen.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down Expand Up @@ -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();
}
Expand Down

0 comments on commit 485ebf9

Please sign in to comment.