diff options
author | Florian Larysch | 2015-09-02 15:58:48 +0200 |
---|---|---|
committer | Florian Larysch | 2015-09-02 16:00:14 +0200 |
commit | e3fadc15c094902e432197e62a5d7b84363efd1d (patch) | |
tree | d90845f4e971f94e7f83b8510b74cefaef33589e /index.php | |
parent | 7a5c8ff018936ed7328042c88a2edae3c29d91be (diff) |
fix check for hasBegun condition
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ try { require('view/streams-json-v1.php'); } - else if($conference->hasBegun()) + else if(!$conference->hasBegun()) { require('view/not_started.php'); } |