chromos33

Results 3 comments of chromos33

isn't the extra sort and limit not redundant as far as I see it getEventList either in it's main Path or in the getCachedEventList already sorts by StartDate and limits...

Think I found out what's wrong If you set a Limit of 1 it first sorts all Events by StartDate ASC then limits 1 and then the return events get...

Changed the Functions to this and now works as intended ``` public function getCachedEventList($start, $end, $filter = null, $limit = null, $sort = "ASC") { return CachedCalendarEntry::get() ->filter(array( "CachedCalendarID" =>...