From 2087cf9f1157855d3383431ec93beade3698addd Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 8 Feb 2002 01:30:59 +0000 Subject: [PATCH] Guest username display error git-svn-id: file:///svn/phpbb/trunk@2062 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewforum.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 2f15e0f487..aecc3e8c6b 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -606,7 +606,7 @@ if( $total_topics ) $last_post_time = create_date($board_config['default_dateformat'], $topic_rowset[$i]['post_time'], $board_config['board_timezone']); $last_post = $last_post_time . '
'; - $last_post .= ( $topic_rowset[$i]['id2'] == ANONYMOUS ) ? ( ($topic_rowset[$i]['post_username'] != "" ) ? $topic_rowset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : '' . $topic_rowset[$i]['user2'] . ' '; + $last_post .= ( $topic_rowset[$i]['id2'] == ANONYMOUS ) ? ( ($topic_rowset[$i]['post_username2'] != "" ) ? $topic_rowset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : '' . $topic_rowset[$i]['user2'] . ' '; $last_post .= '' . $lang['View_latest_post'] . ''; $views = $topic_rowset[$i]['topic_views'];