diff options
author | Crizzo <mail@crizzo.de> | 2014-06-10 19:34:32 +0200 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-06-10 19:34:32 +0200 |
commit | af60861cfd13d1226776ecf85a163a4061a731b5 (patch) | |
tree | 80a097f3e1c1224bd51fe1948ddc2bcdf9a14cfc /phpBB | |
parent | 02c53595b5cb3a19154e88f51e46663ced0f6cc7 (diff) | |
download | forums-af60861cfd13d1226776ecf85a163a4061a731b5.tar forums-af60861cfd13d1226776ecf85a163a4061a731b5.tar.gz forums-af60861cfd13d1226776ecf85a163a4061a731b5.tar.bz2 forums-af60861cfd13d1226776ecf85a163a4061a731b5.tar.xz forums-af60861cfd13d1226776ecf85a163a4061a731b5.zip |
[ticket/12680] Removes unnessesary $user->lang from CONTACT_USER
PHPBB3-12680
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 0845ed0039..be35b7baa0 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1699,7 +1699,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) 'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'], 'POSTER_WARNINGS' => $auth->acl_get('m_warn') ? $user_cache[$poster_id]['warnings'] : '', 'POSTER_AGE' => $user_cache[$poster_id]['age'], - 'CONTACT_USER' => $user->lang($row['contact_user']), + 'CONTACT_USER' => $row['contact_user'], 'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false), 'POST_SUBJECT' => $row['post_subject'], |