aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2002-11-21 15:40:21 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2002-11-21 15:40:21 +0000
commit25a3ef55be2122b7e6b8cea948fa27f34766b088 (patch)
tree8c8599c151b7e5db5230089876592ae207f7003a /phpBB/memberlist.php
parent68ee9ffb1fb21e734f2dde3461e991fcc65fed41 (diff)
downloadforums-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/memberlist.php')
-rw-r--r--phpBB/memberlist.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php
index 33937bf777..b2351e78f9 100644
--- a/phpBB/memberlist.php
+++ b/phpBB/memberlist.php
@@ -209,7 +209,7 @@ if ($row = $db->sql_fetchrow($result))
if ($row['user_viewemail'] || $auth->acl_get('a_'))
{
- $email_uri = ($config['board_email_form']) ? "profile.$phpEx$SID&amp;mode=email&amp;u=" . $user_id : 'mailto:' . $row['user_email'];
+ $email_uri = ($config['board_email_form']) ? "ucp.$phpEx$SID&amp;mode=email&amp;u=" . $user_id : 'mailto:' . $row['user_email'];
$email_img = '<a href="' . $email_uri . '">' . $user->img('icon_email', $user->lang['Send_email']) . '</a>';
$email = '<a href="' . $email_uri . '">' . $user->lang['Send_email'] . '</a>';
@@ -220,7 +220,7 @@ if ($row = $db->sql_fetchrow($result))
$email = '&nbsp;';
}
- $temp_url = "profile.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id";
+ $temp_url = "ucp.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id";
$profile_img = '<a href="' . $temp_url . '">' . $user->img('icon_profile', $user->lang['Read_profile']) . '</a>';
$profile = '<a href="' . $temp_url . '">' . $user->lang['Read_profile'] . '</a>';
@@ -247,7 +247,7 @@ if ($row = $db->sql_fetchrow($result))
$aim_img = ($row['user_aim']) ? '<a href="aim:goim?screenname=' . $row['user_aim'] . '&amp;message=Hello+Are+you+there?">' . $user->img('icon_aim', $user->lang['AIM']) . '</a>' : '';
$aim = ($row['user_aim']) ? '<a href="aim:goim?screenname=' . $row['user_aim'] . '&amp;message=Hello+Are+you+there?">' . $user->lang['AIM'] . '</a>' : '';
- $temp_url = "profile.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id";
+ $temp_url = "ucp.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id";
$msn_img = ($row['user_msnm']) ? '<a href="' . $temp_url . '">' . $user->img('icon_msnm', $user->lang['MSNM']) . '</a>' : '';
$msn = ($row['user_msnm']) ? '<a href="' . $temp_url . '">' . $user->lang['MSNM'] . '</a>' : '';
@@ -288,7 +288,7 @@ if ($row = $db->sql_fetchrow($result))
'S_ROW_COUNT' => $i,
- 'U_VIEWPROFILE' => "profile.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id")
+ 'U_VIEWPROFILE' => "ucp.$phpEx$SID&amp;mode=viewprofile&amp;u=$user_id")
);
$i++;