diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-21 15:40:21 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-21 15:40:21 +0000 |
commit | 25a3ef55be2122b7e6b8cea948fa27f34766b088 (patch) | |
tree | 8c8599c151b7e5db5230089876592ae207f7003a /phpBB/search.php | |
parent | 68ee9ffb1fb21e734f2dde3461e991fcc65fed41 (diff) | |
download | forums-25a3ef55be2122b7e6b8cea948fa27f34766b088.tar forums-25a3ef55be2122b7e6b8cea948fa27f34766b088.tar.gz forums-25a3ef55be2122b7e6b8cea948fa27f34766b088.tar.bz2 forums-25a3ef55be2122b7e6b8cea948fa27f34766b088.tar.xz forums-25a3ef55be2122b7e6b8cea948fa27f34766b088.zip |
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
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 6 |
1 files changed, 3 insertions, 3 deletions
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'] ) ? '<a href="' . "profile.$phpEx$SID&mode=viewprofile&u=" . $searchset[$i]['user_id'] . '">' : ''; + $poster = ( !$searchset[$i]['user_id'] ) ? '<a href="' . "ucp.$phpEx$SID&mode=viewprofile&u=" . $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'] ) ? '</a>' : ''; @@ -1067,7 +1067,7 @@ if ( $search_keywords != '' || $search_author != '' || $search_id ) } - $topic_author = ( $searchset[$i]['user_id'] ) ? '<a href="' . "profile.$phpEx$SID&mode=viewprofile&u=" . $searchset[$i]['user_id'] . '">' : ''; + $topic_author = ( $searchset[$i]['user_id'] ) ? '<a href="' . "ucp.$phpEx$SID&mode=viewprofile&u=" . $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'] ) ? '</a>' : ''; @@ -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'] . ' ' ) : '<a href="' . "profile.$phpEx$SID&mode=viewprofile&u=" . $searchset[$i]['id2'] . '">' . $searchset[$i]['user2'] . '</a>'; + $last_post_author = ( $searchset[$i]['id2'] ) ? ( ($searchset[$i]['post_username2'] != '' ) ? $searchset[$i]['post_username2'] . ' ' : $user->lang['Guest'] . ' ' ) : '<a href="' . "ucp.$phpEx$SID&mode=viewprofile&u=" . $searchset[$i]['id2'] . '">' . $searchset[$i]['user2'] . '</a>'; $last_post_url = '<a href="' . "viewtopic.$phpEx$SID&p=" . $searchset[$i]['topic_last_post_id'] . '#' . $searchset[$i]['topic_last_post_id'] . '">' . $user->img('icon_latest_reply', $user->lang['View_latest_post']) . '</a>'; |