diff options
author | MaZderMind | 2016-12-11 20:27:58 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-11 20:38:31 +0100 |
commit | 4c9cc1f8e6bcb8c68e5106437fcb41bbbc380885 (patch) | |
tree | 08bee35497cd409ad88d07fff51525e936f66070 | |
parent | 8beec6fda376b842a9ddb7a2425829690f0a8b48 (diff) |
list conferences sorted on startpage
-rw-r--r-- | model/Conferences.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Conferences.php b/model/Conferences.php index 8de4029..f930e32 100644 --- a/model/Conferences.php +++ b/model/Conferences.php @@ -33,7 +33,7 @@ class Conferences public static function getActiveConferences() { return array_values(array_filter( - Conferences::getConferences(), + Conferences::getConferencesSorted(), function($conference) { return !$conference->isClosed(); } |