################################################################################
## MOD Title:		easyUCP extension - Registercard-System
## MOD Author:		Hilemas < webmaster@creaxive.de > (Christian Reichel) http://www.creaxive.de
## 
## MOD Description:	Add a Registercard-System to your easyUCP Mod.
## MOD Version:		1.0 
## 
## Installation Level:	Easy
## Installation Time:	5 Minutes 
##
## Files To Edit:  	2
##
##			templates/subSilver/easyucp_body.tpl
##                      include/usercp_viewprofile.php
##
## Included Files:	4
##
##			templates/subSilver/easyucp_second_body.tpl
##			templates/subSilver/images/profile-bgactive.gif
##			templates/subSilver/images/profile-bgactivele.gif
##			templates/subSilver/images/profile-bgactiveri.gif
##
################################################################################
## The following sites also contain the latest version of this MOD: 
## 
## http://www.AmigaLink.de
##
## http://www.creaxive.de
##  
################################################################################
## Mod Notes:
##
##	This MOD in an extension for the easyUCP and easyUCP extension - Second Profilpage.
##	You must install the easyUCP and easyUCP extension - Second Profilpage first!
##
################################################################################
## MOD History: 
## 
##   2007-04-02 - Version 1.0
##	- First Version
## 
################################################################################
##
##  This hack is released under the GPL License. 
##  This hack can be freely used, but not distributed, without permission.
##  Intellectual Property Rights are retained by the hack author(s) 
##  listed above.
##
################################################################################
##
##  BEFORE ADDING THIS HACK TO YOUR FORUM, please be sure to backup ALL
##  affected files.
##
################################################################################ 
#
#----------[ COPY FILES ]-------------------------------
#
#  Copy / upload the following files to your phpBB root directory.
#  The phpBB root directory is the directory on your server containing index.php
#

copy templates/subSilver/easyucp_secound_body.tpl
copy templates/subSilver/images/profile-bgactive.gif
copy templates/subSilver/images/profile-bgactivele.gif
copy templates/subSilver/images/profile-bgactiveri.gif

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

include/usercp_viewprofile.php

#
#----------[ FIND ]-------------------------------------
#

        	$second_profile_link .= '">&nbsp;&#171;&nbsp;' . $lang['Previous'] . '</a>';

#
#----------[ REPLACE WITH ]-------------------------------------
#

	        $second_profile_link .= '">' . $lang['Profile'] . '</a>';

#
#----------[ FIND ]-------------------------------------
#

		$second_profile_link .= '">' . $lang['Next'] . '&nbsp;&#187;&nbsp;</a>';

#
#----------[ REPLACE WITH ]-------------------------------------
#

		$second_profile_link .= '">' . $lang['Second_profilepage'] . '</a>';

#
#----------[ FIND ]-------------------------------------
#

	'L_SECOND_PROFILEPAGE' => $lang['Second_profilepage'],

#
#----------[ AFTER, ADD ]-------------------------------------
#

	'L_APROFILE' => $lang['Profile'],

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

templates/subSilver/easyucp_body.tpl

#
#----------[ FIND AND DELETE]-------------------------------------
#

	<tr><td valign="top" align="right"><span class="nav">{U_SECOND_PROFILE_LINK}</span></td></tr>

#
#----------[ FIND ]-------------------------------------
#

<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="left">
					<tr>
					<td class="catLeft" width="40%" height="28" align="center">&nbsp;

#
#----------[REPLACE WITH ]-------------------------------------
#

<table class="forumline" cellspacing="0" cellpadding="0" border="0" align="left" height="100%">
					<tr>
					<td class="catLeft" width="40%" height="28" align="left">
					<table border="0" id="table1" cellspacing="0" cellpadding="0" height="100%">
						<tr>
							<td background="templates/creaxive/images/profile-bgactivele.gif" width="4"></td>
							<td background="templates/creaxive/images/profile-bgactive.gif"><span class="gen"><b>{L_APROFILE}</b></span></td>
							<td background="templates/creaxive/images/profile-bgactiveri.gif" width="4"></td>
							<td width="10">&nbsp;</td>
							<td><span class="gen">{U_SECOND_PROFILE_LINK}</span></td>
						</tr>
					</table>

#
#----------[ SAVE AND CLOSE ALL FILES ]-----------------
#
# EoM