mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Merge pull request #2400 from PayBas/ticket/12488
[ticket/12488] Add user warning indication to viewtopic posts * PayBas/ticket/12488: [ticket/12488] subSilver2 fix (no longer displays if warnings = 0) [ticket/12488] Typo fix [ticket/12488] Removed <em> and removed anonymous check [ticket/12488] Add user warning indication to viewtopic posts
This commit is contained in:
@@ -1642,7 +1642,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
|
||||
'POSTER_JOINED' => $user_cache[$poster_id]['joined'],
|
||||
'POSTER_POSTS' => $user_cache[$poster_id]['posts'],
|
||||
'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'],
|
||||
'POSTER_WARNINGS' => $user_cache[$poster_id]['warnings'],
|
||||
'POSTER_WARNINGS' => $auth->acl_get('m_warn') ? $user_cache[$poster_id]['warnings'] : '',
|
||||
'POSTER_AGE' => $user_cache[$poster_id]['age'],
|
||||
|
||||
'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false),
|
||||
|
Reference in New Issue
Block a user