Nice hack!
I like it, nice and simple.. although if you have nothing in the field it won't display anything so I added this to it:
Open up member.php and search for:
Code:
if ($userinfo[icq]!="") {
eval("\$userinfo[icqicon] = \"".gettemplate("icq")."\";");
} else {
$userinfo[icq]="None";
}
and above it add:
Code:
if ($userinfo[msn]!="") {
$userinfo[msn]=$userinfo[msn];
} else {
$userinfo[msn]="None";
}
Save and upload.
Just a quick little addition so if you don't have anything it'll display None like the rest.