aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--index.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/index.php b/index.php
index 4d2bfc7..3cfe1d5 100644
--- a/index.php
+++ b/index.php
@@ -65,7 +65,12 @@ try {
require('view/streams-json-v1.php');
}
- else if($conference->isClosed())
+ else if($conference->hasBegun())
+ {
+ require('view/not_started.php');
+ }
+
+ else if($conference->hasEnded())
{
require('view/closed.php');
}