mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Small bug in template, some fields not shown if user posts first message in forum where postcount is not increased
git-svn-id: file:///svn/phpbb/trunk@5216 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
da6bbc5851
commit
d7fe796fd9
1 changed files with 1 additions and 1 deletions
|
@ -853,7 +853,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
|
|
||||||
$user_cache[$poster_id] = array(
|
$user_cache[$poster_id] = array(
|
||||||
'joined' => $user->format_date($row['user_regdate'], $user->lang['DATE_FORMAT']),
|
'joined' => $user->format_date($row['user_regdate'], $user->lang['DATE_FORMAT']),
|
||||||
'posts' => (!empty($row['user_posts'])) ? $row['user_posts'] : '',
|
'posts' => $row['user_posts'],
|
||||||
'from' => (!empty($row['user_from'])) ? $row['user_from'] : '',
|
'from' => (!empty($row['user_from'])) ? $row['user_from'] : '',
|
||||||
|
|
||||||
'sig' => $user_sig,
|
'sig' => $user_sig,
|
||||||
|
|
Loading…
Add table
Reference in a new issue