Skip to content

Commit

Permalink
ENHANCEMENT: Sort by date, then time.
Browse files Browse the repository at this point in the history
  • Loading branch information
unclecheese committed Sep 11, 2012
1 parent 0142112 commit 52050fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function getEventList($start, $end, $filter = null, $limit = null, $annou

}

$eventList->sort("StartDate","ASC");
$eventList->sort(array("StartDate" => "ASC", "StartTime" => "ASC"));

// if($this->Feeds()) {
// $event_list = $this->importFromFeeds($event_list);
Expand Down

0 comments on commit 52050fb

Please sign in to comment.