diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-21 13:17:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-21 13:17:40 +0000 |
commit | 7c96e14e767b9624facf3e44b0acdbd4bdf6733f (patch) | |
tree | 3bb9b2391797dfff2267e367bdc99041404bb604 /phpBB | |
parent | f3a3543476498dc73206fcf030f1edd8ecc5f03c (diff) | |
download | forums-7c96e14e767b9624facf3e44b0acdbd4bdf6733f.tar forums-7c96e14e767b9624facf3e44b0acdbd4bdf6733f.tar.gz forums-7c96e14e767b9624facf3e44b0acdbd4bdf6733f.tar.bz2 forums-7c96e14e767b9624facf3e44b0acdbd4bdf6733f.tar.xz forums-7c96e14e767b9624facf3e44b0acdbd4bdf6733f.zip |
More ANONYMOUS changes
git-svn-id: file:///svn/phpbb/trunk@3489 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/login.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/phpBB/login.php b/phpBB/login.php index 9f3c471655..793e261ea1 100644 --- a/phpBB/login.php +++ b/phpBB/login.php @@ -40,14 +40,12 @@ $redirect = (!empty($redirect)) ? $_SERVER['QUERY_STRING'] : ''; // Do the login/logout/form/whatever if (isset($login) || isset($logout)) { - if (isset($login) && !$user->data['user_id']) + if (isset($login) && $user->data['user_id'] == ANONYMOUS) { $autologin = (!empty($autologin)) ? true : false; - // // Is the board disabled? Are we an admin? No, then back to the index we go - // - if ($config['board_disable'] && !$auth->acl_get('a_')) + if (!empty($config['board_disable']) && !$auth->acl_get('a_')) { redirect("index.$phpEx$SID"); } @@ -59,7 +57,7 @@ if (isset($login) || isset($logout)) ); $message = $user->lang['Error_login'] . '<br /><br />' . sprintf($user->lang['Click_return_login'], '<a href="' . "login.$phpEx$SID&redirect=$redirect" . '">', '</a>') . '<br /><br />' . sprintf($user->lang['Click_return_index'], '<a href="' . "index.$phpEx$SID" . '">', '</a>'); - message_die(MESSAGE, $message); + trigger_error($message); } } else if ($user->data['user_id'] != ANONYMOUS) @@ -74,7 +72,7 @@ if (isset($login) || isset($logout)) redirect($redirect_url); } -if ( !$user->data['user_id'] ) +if ($user->data['user_id'] == ANONYMOUS) { $template->assign_vars(array( 'L_ENTER_PASSWORD' => $user->lang['Enter_password'], |