aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/profile.php
diff options
context:
space:
mode:
authordougk_ff7 <dougk_ff7@users.sourceforge.net>2001-10-18 22:18:57 +0000
committerdougk_ff7 <dougk_ff7@users.sourceforge.net>2001-10-18 22:18:57 +0000
commit43025a0dbb08d8ddea029b89f645dadc313d092d (patch)
treef05f3e0a891b5a17b40264a2efa69a8b92296d4b /phpBB/profile.php
parentc28c07d63ff8403465283c6657a157a6ef4b022b (diff)
downloadforums-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.php2
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'] . "&amp;message=Hello+Are+you+there?\"><img src=\"" . $images['icon_aim'] . "\" border=\"0\" alt=\"" . $lang['AIM'] . "\" /></a>" : "&nbsp;";
- $msnm_img = ($profiledata['user_msnm']) ? "<a href=\"profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . "=$poster_id\"><img src=\"" . $images['icon_msnm'] . "\" border=\"0\" alt=\"" . $lang['MSNM'] . "\" /></a>" : "&nbsp;";
+ $msnm_img = ($profiledata['user_msnm']) ? "<a href=\"mailto:" . $profiledata['user_msnm'] . "\"><img src=\"" . $images['icon_msnm'] . "\" border=\"0\" alt=\"" . $lang['MSNM'] . "\" /></a>&nbsp;" . $profiledata['user_msnm'] : "&nbsp;";
$yim_img = ( $profiledata['user_yim'] ) ? "<a href=\"http://edit.yahoo.com/config/send_webmesg?.target=" . $members[$i]['user_yim'] . "&amp;.src=pg\"><img src=\"" . $images['icon_yim'] . "\" border=\"0\" alt=\"" . $lang['YIM'] . "\" /></a>" : "&nbsp;";