From 25a3ef55be2122b7e6b8cea948fa27f34766b088 Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Thu, 21 Nov 2002 15:40:21 +0000 Subject: Moved profile.php to ucp.php. ucp is really really broken right now, don't even think about trying to use it. git-svn-id: file:///svn/phpbb/trunk@3075 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/search.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/search.php') diff --git a/phpBB/search.php b/phpBB/search.php index bbd76ef591..b4ca6dd8be 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -839,7 +839,7 @@ if ( $search_keywords != '' || $search_author != '' || $search_id ) } - $poster = ( !$searchset[$i]['user_id'] ) ? '' : ''; + $poster = ( !$searchset[$i]['user_id'] ) ? '' : ''; $poster .= ( $searchset[$i]['user_id'] ) ? $searchset[$i]['username'] : ( ( $searchset[$i]['post_username'] != "" ) ? $searchset[$i]['post_username'] : $user->lang['Guest'] ); $poster .= ( $searchset[$i]['user_id'] ) ? '' : ''; @@ -1067,7 +1067,7 @@ if ( $search_keywords != '' || $search_author != '' || $search_id ) } - $topic_author = ( $searchset[$i]['user_id'] ) ? '' : ''; + $topic_author = ( $searchset[$i]['user_id'] ) ? '' : ''; $topic_author .= ( $searchset[$i]['user_id'] ) ? $searchset[$i]['username'] : ( ( $searchset[$i]['post_username'] != '' ) ? $searchset[$i]['post_username'] : $user->lang['Guest'] ); $topic_author .= ( $searchset[$i]['user_id'] ) ? '' : ''; @@ -1076,7 +1076,7 @@ if ( $search_keywords != '' || $search_author != '' || $search_id ) $last_post_time = $user->format_date($searchset[$i]['post_time']); - $last_post_author = ( $searchset[$i]['id2'] ) ? ( ($searchset[$i]['post_username2'] != '' ) ? $searchset[$i]['post_username2'] . ' ' : $user->lang['Guest'] . ' ' ) : '' . $searchset[$i]['user2'] . ''; + $last_post_author = ( $searchset[$i]['id2'] ) ? ( ($searchset[$i]['post_username2'] != '' ) ? $searchset[$i]['post_username2'] . ' ' : $user->lang['Guest'] . ' ' ) : '' . $searchset[$i]['user2'] . ''; $last_post_url = '' . $user->img('icon_latest_reply', $user->lang['View_latest_post']) . ''; -- cgit v1.2.1