mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Fix for bug # 226 in the tracker
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2550 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4054761ae3
commit
bae83abc75
1 changed files with 6 additions and 1 deletions
|
@ -139,6 +139,11 @@ function topic_review($topic_id, $is_inline_review)
|
|||
$poster = $row['post_username'];
|
||||
$poster_rank = $lang['Guest'];
|
||||
}
|
||||
elseif ( $poster_id == ANONYMOUS )
|
||||
{
|
||||
$poster = $lang['Guest'];
|
||||
$poster_rank = '';
|
||||
}
|
||||
|
||||
$post_subject = ( $row['post_subject'] != '' ) ? $row['post_subject'] : '';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue