aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Larysch2015-09-02 15:58:48 +0200
committerFlorian Larysch2015-09-02 16:00:14 +0200
commite3fadc15c094902e432197e62a5d7b84363efd1d (patch)
treed90845f4e971f94e7f83b8510b74cefaef33589e
parent7a5c8ff018936ed7328042c88a2edae3c29d91be (diff)
fix check for hasBegun condition
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 3cfe1d5..bcdaf57 100644
--- a/index.php
+++ b/index.php
@@ -65,7 +65,7 @@ try {
require('view/streams-json-v1.php');
}
- else if($conference->hasBegun())
+ else if(!$conference->hasBegun())
{
require('view/not_started.php');
}