mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 03:16:10 +01:00
Fix broken upcoming feature
Using a FlexForm results in stored Unixtimestamps. Adding 00:00 and using strtotime will result in false, resulting in null. We now just keep the provided value as integer. That way underlying code works as expected and delivers events from given start date. Relates: #9352, #8581
This commit is contained in:
parent
f0ee19cfae
commit
c38241f351
1 changed files with 2 additions and 2 deletions
|
@ -142,10 +142,10 @@ class DateController extends AbstractController
|
|||
$demand->setSortOrder((string)$this->settings['sortOrder']);
|
||||
$demand->setHighlight((bool)$this->settings['highlight']);
|
||||
if (!empty($this->settings['start'])) {
|
||||
$demand->setStart(strtotime($this->settings['start'] . ' 00:00') ?: null);
|
||||
$demand->setStart((int)$this->settings['start']);
|
||||
}
|
||||
if (!empty($this->settings['end'])) {
|
||||
$demand->setEnd(strtotime($this->settings['end'] . ' 00:00') ?: null);
|
||||
$demand->setEnd((int)$this->settings['end']);
|
||||
}
|
||||
|
||||
if (!empty($this->settings['limit'])) {
|
||||
|
|
Loading…
Reference in a new issue