diff options
Diffstat (limited to 'htdocs/moderate/pages/index.php')
-rw-r--r-- | htdocs/moderate/pages/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htdocs/moderate/pages/index.php b/htdocs/moderate/pages/index.php index d6ffd87..ab00552 100644 --- a/htdocs/moderate/pages/index.php +++ b/htdocs/moderate/pages/index.php @@ -11,7 +11,7 @@ require_once('../../src/base.inc.php'); // Verify User is admin -if (!$_SESSION['currentUser']->isAdmin()) { +if (!isset($_SESSION['currentUser']) or !$_SESSION['currentUser']->isAdmin()) { header('Location: ' . buildUrl('moderate/')); exit; } |