diff options
author | MaZderMind | 2016-12-10 18:23:45 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-10 18:26:34 +0100 |
commit | 3de0b86d9c3c82428ed7d1f0e04cec9fa2d0d758 (patch) | |
tree | d98718a07088754f265f0fd1476997ecd83c4161 /index.php | |
parent | d0a891dcc4f261300616883aab384bd93f9f487c (diff) |
alwas allow access to the conference about-page
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -214,6 +214,11 @@ try { require('view/multiview.php'); } + else if($route == 'about') + { + require('view/about.php'); + } + // HAS-NOT-BEGUN VIEW else if(!$conference->hasBegun()) { @@ -247,11 +252,6 @@ try { require('view/overview.php'); } - else if($route == 'about') - { - require('view/about.php'); - } - else if($route == 'feedback') { require('view/feedback.php'); |