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'];