diff options
author | Crizzo <mail@crizzo.de> | 2014-03-23 15:39:09 +0100 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-03-28 19:12:36 +0100 |
commit | 175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1 (patch) | |
tree | 472b3e069aed27ce442372ab5e3ce6ac1866b9a0 /phpBB/includes/functions.php | |
parent | aa6077c1508553c2ba14a4f220215984ede63ae1 (diff) | |
download | forums-175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1.tar forums-175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1.tar.gz forums-175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1.tar.bz2 forums-175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1.tar.xz forums-175d83146e1485b4fcb92cd82bc9fc6cbf2ed4d1.zip |
[ticket/9758] Adding impr. for overall_header display of avatar and username
PHPBB3-9758
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index c6ae3828f5..c805a9fe67 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4772,7 +4772,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = if ($user->data['user_id'] != ANONYMOUS) { $u_login_logout = append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=logout', true, $user->session_id); - $l_login_logout = sprintf($user->lang['LOGOUT_USER'], $user->data['username']); + $l_login_logout = sprintf($user->lang['LOGOUT'], $user->data['username']); } else { @@ -4946,6 +4946,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = 'SESSION_ID' => $user->session_id, 'ROOT_PATH' => $web_path, 'BOARD_URL' => $board_url, + 'USERNAME_FULL' => get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']), 'L_LOGIN_LOGOUT' => $l_login_logout, 'L_INDEX' => ($config['board_index_text'] !== '') ? $config['board_index_text'] : $user->lang['FORUM_INDEX'], |