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:
the_systech 2002-05-03 15:58:35 +00:00
parent 4054761ae3
commit bae83abc75

View file

@ -139,6 +139,11 @@ function topic_review($topic_id, $is_inline_review)
$poster = $row['post_username']; $poster = $row['post_username'];
$poster_rank = $lang['Guest']; $poster_rank = $lang['Guest'];
} }
elseif ( $poster_id == ANONYMOUS )
{
$poster = $lang['Guest'];
$poster_rank = '';
}
$post_subject = ( $row['post_subject'] != '' ) ? $row['post_subject'] : ''; $post_subject = ( $row['post_subject'] != '' ) ? $row['post_subject'] : '';
@ -218,4 +223,4 @@ function topic_review($topic_id, $is_inline_review)
} }
} }
?> ?>