diff options
| author | cflem <carson.fl3ming@gmail.com> | 2016-12-29 15:39:41 -0700 |
|---|---|---|
| committer | cflem <carson.fl3ming@gmail.com> | 2016-12-29 15:39:41 -0700 |
| commit | 878bfb30a710c26ba4306d531d7d48d8c452ef5c (patch) | |
| tree | 89453d2b193c14b682f49b3e886fba6f3219c008 /dash | |
| parent | addf249c06d0f0957e93efd8738b72ef4cd9849c (diff) | |
| download | bulletin-878bfb30a710c26ba4306d531d7d48d8c452ef5c.tar.gz | |
Avoided die clause on guest accessing dash
Diffstat (limited to 'dash')
| -rw-r--r-- | dash/dash_common.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dash/dash_common.php b/dash/dash_common.php index b87cd6d..5a836cb 100644 --- a/dash/dash_common.php +++ b/dash/dash_common.php @@ -1,8 +1,7 @@ <?php require('../inc/common.php'); +if ($b_user['id'] < 1) l_redirect('login.php'); define('ACC_TYPE', $b_user['type']); require('nav.php'); - -if ($b_user['id'] < 1) l_redirect('login.php'); ?> |
