############################################################## 
## MOD Title:          Flashing GIF for new PM
## MOD Author:         Niels < ncr@db9.dk > (Niels Chr. Rd) http://mods.db9.dk
## MOD Description:    This MOD replace the PM GIF by a flashing
##                     one when you have new PM not viewed.
## MOD Version:        1.0.1
## Compatibility:      2.0.4->2.0.6 (2.0.0->2.0.3 not tested)
##
## Installation Level: Easy
## Installation Time:  2 minutes
## Files To Edit:      2
##      templates/subSilver/overall_header.tpl
##      templates/subSilver/subSilver.cfg
##
## Included Files:     4
##      root/templates/subSilver/images/icon_mini_message.gif
##      root/templates/subSilver/images/icon_mini_no_message.gif
##      root/templates/subTrail/images/icon_mini_message.gif
##      root/templates/subTrail/images/icon_mini_no_message.gif
##		  
############################################################## 
## 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/ 
############################################################## 
## Author Notes: 
## 
## 1. Warning : NOT EasyMOD compliant !
## -----------
## This MOD is NOT compatible with EasyMOD 0.0.10a of Nuttzy.
## It can NOT be fully installed because EM can't find the
## string "templates/subSilver/images/icon_mini_message.gif"
## in other styles than subSilver.
## This MOD will be EM compliant with the next release of EM.
##
## 2. Official last version link
## -----------
## Meanwhile the phpBB group validation and as the MOD is not yet
## in the phpBB MOD database, check this official link for updates...
## http://mods.db9.dk/viewtopic.php?t=2311
##
############################################################## 
## MOD History: 
##
##   2003-12-10 - Version 1.0.1
##      - phpBB template compliance enhancement
##
##   2003-08-03 - Version 1.0.0
##      - Initial final release
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ COPY ]------------------------------------------------
#
copy root/templates/subSilver/images/icon_mini_message.gif to templates/subSilver/images/icon_mini_message.gif
copy root/templates/subSilver/images/icon_mini_no_message.gif to templates/subSilver/images/icon_mini_no_message.gif

#
# If you need to update subTrail copy this files too...
#
# copy root/templates/subTrail/images/icon_mini_message.gif to templates/subTrail/images/icon_mini_message.gif
# copy root/templates/subTrail/images/icon_mini_no_message.gif to templates/subTrail/images/icon_mini_no_message.gif
#

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

#
#-----[ FIND ]------------------------------------------------
#
templates/subSilver/images/icon_mini_message.gif

#
#-----[ IN-LINE FIND ]----------------------------------------
#
templates/subSilver/images/icon_mini_message.gif

#
#-----[ IN-LINE REPLACE WITH ]--------------------------------
#
{PRIVMSG_IMG}

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

#
#-----[ FIND ]------------------------------------------------
#
$images['pm_new_msg'] = "";
$images['pm_no_new_msg'] = "";

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

// Start replacement - Flashing GIF for new PM MOD
$images['pm_new_msg'] = "$current_template_images/icon_mini_message.gif";
$images['pm_no_new_msg'] = "$current_template_images/icon_mini_no_message.gif";
// End replacement - Flashing GIF for new PM MOD

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