From 43025a0dbb08d8ddea029b89f645dadc313d092d Mon Sep 17 00:00:00 2001 From: dougk_ff7 Date: Thu, 18 Oct 2001 22:18:57 +0000 Subject: [PATCH] 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 --- phpBB/profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']) ? "\""" : " "; - $msnm_img = ($profiledata['user_msnm']) ? "\""" : " "; + $msnm_img = ($profiledata['user_msnm']) ? "\"" " . $profiledata['user_msnm'] : " "; $yim_img = ( $profiledata['user_yim'] ) ? "\""" : " ";