diff options
author | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2001-10-18 22:18:57 +0000 |
---|---|---|
committer | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2001-10-18 22:18:57 +0000 |
commit | 43025a0dbb08d8ddea029b89f645dadc313d092d (patch) | |
tree | f05f3e0a891b5a17b40264a2efa69a8b92296d4b /phpBB/profile.php | |
parent | c28c07d63ff8403465283c6657a157a6ef4b022b (diff) | |
download | forums-43025a0dbb08d8ddea029b89f645dadc313d092d.tar forums-43025a0dbb08d8ddea029b89f645dadc313d092d.tar.gz forums-43025a0dbb08d8ddea029b89f645dadc313d092d.tar.bz2 forums-43025a0dbb08d8ddea029b89f645dadc313d092d.tar.xz forums-43025a0dbb08d8ddea029b89f645dadc313d092d.zip |
Fixes the bug in profile.php where MSNM does not show up correctly.
git-svn-id: file:///svn/phpbb/trunk@1237 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
-rw-r--r-- | phpBB/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index 3041a67112..8b647dbca8 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -345,7 +345,7 @@ if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) ) $aim_img = ($profiledata['user_aim']) ? "<a href=\"aim:goim?screenname=" . $profiledata['user_aim'] . "&message=Hello+Are+you+there?\"><img src=\"" . $images['icon_aim'] . "\" border=\"0\" alt=\"" . $lang['AIM'] . "\" /></a>" : " "; - $msnm_img = ($profiledata['user_msnm']) ? "<a href=\"profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id\"><img src=\"" . $images['icon_msnm'] . "\" border=\"0\" alt=\"" . $lang['MSNM'] . "\" /></a>" : " "; + $msnm_img = ($profiledata['user_msnm']) ? "<a href=\"mailto:" . $profiledata['user_msnm'] . "\"><img src=\"" . $images['icon_msnm'] . "\" border=\"0\" alt=\"" . $lang['MSNM'] . "\" /></a> " . $profiledata['user_msnm'] : " "; $yim_img = ( $profiledata['user_yim'] ) ? "<a href=\"http://edit.yahoo.com/config/send_webmesg?.target=" . $members[$i]['user_yim'] . "&.src=pg\"><img src=\"" . $images['icon_yim'] . "\" border=\"0\" alt=\"" . $lang['YIM'] . "\" /></a>" : " "; |