|
From: Joas S. <nic...@ph...> - 2009-08-17 09:46:11
|
Author: nickvergessen
Date: Mon Aug 17 10:45:22 2009
New Revision: 10000
Log:
Fix r9961 - populate who is online only where required
Authorised by: AcydBurn
Modified:
branches/phpBB-3_0_0/phpBB/includes/functions.php
Modified: branches/phpBB-3_0_0/phpBB/includes/functions.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/functions.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/functions.php Mon Aug 17 10:45:22 2009
***************
*** 2706,2712 ****
}
else
{
! page_header((!isset($user->lang[$title])) ? $user->lang['CONFIRM'] : $user->lang[$title]);
}
$template->set_filenames(array(
--- 2706,2712 ----
}
else
{
! page_header(((!isset($user->lang[$title])) ? $user->lang['CONFIRM'] : $user->lang[$title]), false);
}
$template->set_filenames(array(
***************
*** 3028,3034 ****
$template->assign_var('LOGIN_ERROR', $user->lang['WRONG_PASSWORD']);
}
! page_header($user->lang['LOGIN']);
$template->assign_vars(array(
'S_HIDDEN_FIELDS' => build_hidden_fields(array('f' => $forum_data['forum_id'])))
--- 3028,3034 ----
$template->assign_var('LOGIN_ERROR', $user->lang['WRONG_PASSWORD']);
}
! page_header($user->lang['LOGIN'], false);
$template->assign_vars(array(
'S_HIDDEN_FIELDS' => build_hidden_fields(array('f' => $forum_data['forum_id'])))
***************
*** 3592,3598 ****
}
else
{
! page_header($msg_title);
}
}
--- 3592,3598 ----
}
else
{
! page_header($msg_title, false);
}
}
|