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:
Bart van Bragt 2005-09-20 19:00:10 +00:00
parent da6bbc5851
commit d7fe796fd9

View file

@ -853,7 +853,7 @@ while ($row = $db->sql_fetchrow($result))
$user_cache[$poster_id] = array(
'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'] : '',
'sig' => $user_sig,