############################################################## 
## MOD Title: Signature Divider Image
## MOD Author: JSchwage < jared.schwager@gmail.com > (Jared Schwager) http://www.grupenet.com
## MOD Description: Allows you change the default signature divider to an image in topic view, message preview, and private messages.
## MOD Version: 1.0.1
## 
## Installation Level: (Easy) 
## Installation Time: 5 Minutes 
## Files To Edit: templates/subSilver/subSilver.cfg
##		viewtopic.php
##		posting.php
##		privmsg.php
## Included Files: sig_divide.gif
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
############################################################## 
## Author Notes:
##	This MOD is EasyMOD compatible!
############################################################## 
## MOD History: 
##
##   2006-01-17 - Version 1.0.0
##      - First stable release
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
#
#-----[ COPY ]---------------------------------
#
copy sig_divide.gif to templates/subSilver/images/lang_spanish/sig_divide.gif

#
#-----[ OPEN ]---------------------------------
#
templates/subSilver/subSilver.cfg

#
#-----[ FIND ]------------------------------------------ 
#
?>

#
#-----[ BEFORE, ADD ]------------------------------------------ 
#
$images['sig_divide'] = "$current_template_images/{LANG}/sig_divide.gif";

#
#-----[ OPEN ]------------------------------------------ 
#
viewtopic.php

#
#-----[ FIND ]------------------------------------------ 
#
$user_sig = '<br />_________________<br />' . str_replace("\n", "\n<br />\n", $user_sig);

#
#-----[ IN-LINE FIND ]------------------------------------------ 
#
_________________

#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------ 
#
<br /><img src="' . $images['sig_divide'] . '" alt="Firma del Usuario" />

#
#-----[ OPEN ]------------------------------------------ 
#
posting.php

#
#-----[ FIND ]------------------------------------------ 
#
$preview_message = $preview_message . '<br /><br />_________________<br />' . $user_sig;

#
#-----[ IN-LINE FIND ]------------------------------------------ 
#
_________________

#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------ 
#
<img src="'.$images['sig_divide'].'" />

#
#-----[ OPEN ]------------------------------------------ 
#
privmsg.php

#
#-----[ FIND ]------------------------------------------ 
#
		$private_message .= '<br /><br />_________________<br />' . make_clickable($user_sig);

#
#-----[ IN-LINE FIND ]------------------------------------------ 
#
_________________

#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------ 
#
<img src="'.$images['sig_divide'].'" />

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