############################################################## 
## MOD Title:		Patch GTalk & MSN View Profile Image Display...
## MOD Author:		NightriderXP < phpBB@4fxearth.net >  (Blake) http://4fxearth.net/phpBB2
## MOD Description:
##			This mod turns the GTalk & MSN options into images in View Profile...
##
## MOD Version:		1.0.0
## 
## Installation Level:	Easy
## Installation Time:	< 1 Minute using EasyMod 
## Files To Edit: 1
##			templates/subSilver/profile_view_body.tpl
## Included Files: 0
##			N/A
##
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
##
## MOD History:
##
##   2005-09-21 - Version 1.0.0 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################

#
#-----[ OPEN ]------------------------------------------------
#

includes/usercp_viewprofile.php

#
#-----[ FIND ]------------------------------------------------
#
$msn_img = ( $profiledata['user_msnm'] ) ? $profiledata['user_msnm'] : '&nbsp;';
$msn = $msn_img;

#
#-----[ REPLACE WITH ]-----------------------------------------
#
$msn_img = ( $profiledata['user_msnm'] ) ? '<a href="' . $profiledata['user_msnm'] . '"><img src="' . $images['icon_msnm'] . '" alt="' . $lang['MSNM'] . '" title="' . $lang['MSNM'] . '" border="0" /></a>' : '&nbsp;';
$msn = ( $profiledata['user_msnm'] ) ? '<a href="' . $temp_url . '">' . $profiledata['user_msnm'] . '</a>' : '&nbsp;';

#
#-----[ FIND ]------------------------------------------------
#
$gtalk_img = ( $profiledata['user_gtalk'] ) ? $profiledata['user_gtalk'] : '&nbsp;';
$gtalk = $gtalk_img;

#
#-----[ REPLACE WITH ]-----------------------------------------
#
$gtalk_img = ( $profiledata['user_gtalk'] ) ? '<a href="' . $profiledata['user_gtalk'] . '"><img src="' . $images['icon_gtalk'] . '" alt="' . $lang['GTALK'] . '" title="' . $lang['GTALK'] . '" border="0" /></a>' : '&nbsp;';
$gtalk = ( $profiledata['user_gtalk'] ) ? '<a href="' . $temp_url . '">' . $profiledata['user_gtalk'] . '</a>' : '&nbsp;';

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_view_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
# 
        <td class="row1" valign="middle"><span class="gen">{MSN}</span></td>
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
        <td class="row1" valign="middle"><span class="gen">{MSN_IMG}</span></td>
# 
#-----[ FIND ]------------------------------------------ 
# 
		<td class="row1" valign="middle"><span class="gen">{GTALK}</span></td>
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
		<td class="row1" valign="middle"><span class="gen">{GTALK_IMG}</span></td>
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM