diff options
Diffstat (limited to 'app/php/facades/EventFacade.php')
-rw-r--r-- | app/php/facades/EventFacade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/php/facades/EventFacade.php b/app/php/facades/EventFacade.php index 6ed739f..e7b3abe 100644 --- a/app/php/facades/EventFacade.php +++ b/app/php/facades/EventFacade.php @@ -22,11 +22,11 @@ class EventFacade extends Facade { } return $this->fetchList( 'getEvents', - array( + [ 'date_from' => $dateFrom ?: '0000-00-00 00:00:00', 'date_to' => $dateTo ?: '9999-99-99', 'calendar_clause' => $calendarClause - ) + ] ); } |