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/privmsg.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/privmsg.php')
| -rw-r--r-- | phpBB/privmsg.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php index 9bfdd0d51a..0e3fd638e6 100644 --- a/phpBB/privmsg.php +++ b/phpBB/privmsg.php @@ -438,7 +438,7 @@ else if ( $mode == 'read' ) $post_date = $user->format_date($privmsg['privmsgs_date']); - $temp_url = append_sid("profile.$phpEx?mode=viewprofile&u=$user_id_from"); + $temp_url = append_sid("ucp.$phpEx?mode=viewprofile&u=$user_id_from"); $profile_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_profile'] . '" alt="' . $lang['Read_profile'] . '" title="' . $lang['Read_profile'] . '" border="0" /></a>'; $profile = '<a href="' . $temp_url . '">' . $lang['Read_profile'] . '</a>'; @@ -448,7 +448,7 @@ else if ( $mode == 'read' ) if ( !empty($privmsg['user_viewemail']) || $auth->acl_get('a_') ) { - $email_uri = ( $config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&u$user_id_from") : 'mailto:' . $privmsg['user_email']; + $email_uri = ( $config['board_email_form'] ) ? append_sid("ucp.$phpEx?mode=email&u$user_id_from") : 'mailto:' . $privmsg['user_email']; $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" title="' . $lang['Send_email'] . '" border="0" /></a>'; $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>'; @@ -478,7 +478,7 @@ else if ( $mode == 'read' ) $aim_img = ( $privmsg['user_aim'] ) ? '<a href="aim:goim?screenname=' . $privmsg['user_aim'] . '&message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" alt="' . $lang['AIM'] . '" title="' . $lang['AIM'] . '" border="0" /></a>' : ''; $aim = ( $privmsg['user_aim'] ) ? '<a href="aim:goim?screenname=' . $privmsg['user_aim'] . '&message=Hello+Are+you+there?">' . $lang['AIM'] . '</a>' : ''; - $temp_url = append_sid("profile.$phpEx?mode=viewprofile&u=$poster_id"); + $temp_url = append_sid("ucp.$phpEx?mode=viewprofile&u=$poster_id"); $msn_img = ( $privmsg['user_msnm'] ) ? '<a href="' . $temp_url . '"><img src="' . $images['icon_msnm'] . '" alt="' . $lang['MSNM'] . '" title="' . $lang['MSNM'] . '" border="0" /></a>' : ''; $msn = ( $privmsg['user_msnm'] ) ? '<a href="' . $temp_url . '">' . $lang['MSNM'] . '</a>' : ''; @@ -1823,7 +1823,7 @@ if ( $row = $db->sql_fetchrow($result) ) $msg_userid = $row['user_id']; $msg_username = $row['username']; - $u_from_user_profile = append_sid("profile.$phpEx?mode=viewprofile&u=$msg_userid"); + $u_from_user_profile = append_sid("ucp.$phpEx?mode=viewprofile&u=$msg_userid"); $msg_subject = $row['privmsgs_subject']; |
