aboutsummaryrefslogtreecommitdiff
path: root/model/Conferences.php
diff options
context:
space:
mode:
authordedeibel2017-12-16 21:13:08 +0100
committerdedeibel2017-12-16 21:13:08 +0100
commitb422d1a3dc02374a34da7ad91415c0a78ea46f9d (patch)
tree3105911c0bb75051f576e9c43ece28c145db5a60 /model/Conferences.php
parentc6d44125911ad770726f83cc4a6b971b661e02e2 (diff)
Added feature for unlisted conferences
Diffstat (limited to '')
-rw-r--r--model/Conferences.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Conferences.php b/model/Conferences.php
index 575759e..1e982b4 100644
--- a/model/Conferences.php
+++ b/model/Conferences.php
@@ -35,7 +35,7 @@ class Conferences
return array_values(array_filter(
Conferences::getConferencesSorted(),
function($conference) {
- return !$conference->isClosed();
+ return !$conference->isClosed() && !$conference->isUnlisted();
}
));
}