aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMaZderMind2016-12-10 18:23:45 +0100
committerMaZderMind2016-12-10 18:26:34 +0100
commit3de0b86d9c3c82428ed7d1f0e04cec9fa2d0d758 (patch)
treed98718a07088754f265f0fd1476997ecd83c4161 /index.php
parentd0a891dcc4f261300616883aab384bd93f9f487c (diff)
alwas allow access to the conference about-page
Diffstat (limited to 'index.php')
-rw-r--r--index.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.php b/index.php
index b27055e..414dede 100644
--- a/index.php
+++ b/index.php
@@ -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');