diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 13:02:29 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-12 13:02:29 +0000 |
commit | 2ba03a411e561cb943f8ec8f11afc51eaa720275 (patch) | |
tree | 4c425e95dca99f8ef949866bd5903d76d73b73a6 /phpBB/includes/functions.php | |
parent | 48d88164e19fd81b849490d827dc5f43615171cb (diff) | |
download | forums-2ba03a411e561cb943f8ec8f11afc51eaa720275.tar forums-2ba03a411e561cb943f8ec8f11afc51eaa720275.tar.gz forums-2ba03a411e561cb943f8ec8f11afc51eaa720275.tar.bz2 forums-2ba03a411e561cb943f8ec8f11afc51eaa720275.tar.xz forums-2ba03a411e561cb943f8ec8f11afc51eaa720275.zip |
allow what is stated within the changelog...
git-svn-id: file:///svn/phpbb/trunk@7874 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 5918b441d0..958b245e1a 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4133,7 +4133,7 @@ function page_header($page_title = '', $display_online_list = true) 'U_RESTORE_PERMISSIONS' => ($user->data['user_perm_from'] && $auth->acl_get('a_switchperm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=restore_perm') : '', 'S_USER_LOGGED_IN' => ($user->data['user_id'] != ANONYMOUS) ? true : false, - 'S_AUTOLOGIN_ENABLED' => ($config['allow_autologin']) ? true : false, + 'S_AUTOLOGIN_ENABLED' => ($config['allow_autologin']) ? true : false, 'S_BOARD_DISABLED' => ($config['board_disable']) ? true : false, 'S_REGISTERED_USER' => $user->data['is_registered'], 'S_IS_BOT' => $user->data['is_bot'], |