aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2014-03-25 19:33:38 +0100
committerCrizzo <mail@crizzo.de>2014-03-28 19:26:53 +0100
commit4f2a5120520aba766cb8a9e944e695213ec11b18 (patch)
tree552c6326786c3c118061c579eeab275bf44155c1
parent9568181b98a370b81c1683ecba36bf4f8a9ea697 (diff)
downloadforums-4f2a5120520aba766cb8a9e944e695213ec11b18.tar
forums-4f2a5120520aba766cb8a9e944e695213ec11b18.tar.gz
forums-4f2a5120520aba766cb8a9e944e695213ec11b18.tar.bz2
forums-4f2a5120520aba766cb8a9e944e695213ec11b18.tar.xz
forums-4f2a5120520aba766cb8a9e944e695213ec11b18.zip
[ticket/9758] Slims the line 4775 in includes/functions.php
PHPBB3-9758
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index c805a9fe67..a554372c69 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->data['username']);
+ $l_login_logout = $user->lang['LOGOUT'];
}
else
{