diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-08-17 09:45:22 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-08-17 09:45:22 +0000 |
commit | f0ebe145e1d31d11c753bdc404803c3d1be94343 (patch) | |
tree | 9d67e97bce0ba23c2563b90ed3d2e266e2dc8a54 | |
parent | 76fd6026bcbbfc7136766eba9295663b1a820a48 (diff) | |
download | forums-f0ebe145e1d31d11c753bdc404803c3d1be94343.tar forums-f0ebe145e1d31d11c753bdc404803c3d1be94343.tar.gz forums-f0ebe145e1d31d11c753bdc404803c3d1be94343.tar.bz2 forums-f0ebe145e1d31d11c753bdc404803c3d1be94343.tar.xz forums-f0ebe145e1d31d11c753bdc404803c3d1be94343.zip |
Fix r9961 - populate who is online only where required
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10000 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2f8a3ddda6..d1883907dd 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2706,7 +2706,7 @@ function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_bo } else { - page_header((!isset($user->lang[$title])) ? $user->lang['CONFIRM'] : $user->lang[$title]); + page_header(((!isset($user->lang[$title])) ? $user->lang['CONFIRM'] : $user->lang[$title]), false); } $template->set_filenames(array( @@ -3028,7 +3028,7 @@ function login_forum_box($forum_data) $template->assign_var('LOGIN_ERROR', $user->lang['WRONG_PASSWORD']); } - page_header($user->lang['LOGIN']); + page_header($user->lang['LOGIN'], false); $template->assign_vars(array( 'S_HIDDEN_FIELDS' => build_hidden_fields(array('f' => $forum_data['forum_id']))) @@ -3592,7 +3592,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) } else { - page_header($msg_title); + page_header($msg_title, false); } } |