diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/user.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/user.inc.php b/include/user.inc.php index 6eb0b605f..896a9752d 100644 --- a/include/user.inc.php +++ b/include/user.inc.php @@ -65,7 +65,8 @@ else $user['is_the_guest'] = true; } -if ($user['is_the_guest'] and !$conf['guest_access']) +if ($user['is_the_guest'] and !$conf['guest_access'] + and (basename($_SERVER['PHP_SELF'])!='identification.php')) { redirect (get_root_url().'identification.php'); } |