Seite 1 von 1

Problem mit "Flashing GIF for new PM" und Mozilla

Verfasst: 18.11.2003 01:28
von dEAth
Habe den Mod "Flashing GIF for new PM" von http://mods.db9.dk/ meines Erachtens richtig eingebaut.
Er funktioniert auch einwandfrei mit dem Internet Explorer aber unter Mozilla will er einfach nicht.
Hier die Anleitung (kann man ja eigentlich nichts falsch machen!):

Code: Alles auswählen

############################################################## 
## MOD Title:          Flashing GIF for new PM
## MOD Author:         Niels < ncr@db9.dk > (Niels Chr. Rød) 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.0
## 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
##         templates/subSilver/images/icon_mini_message.gif
##         templates/subSilver/images/icon_mini_no_message.gif
##         templates/subTrail/images/icon_mini_message.gif
##         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: 
## 
## This MOD is NOT compatible with EasyMOD 0.0.10 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. The only solution would
## have been to replace all the line, but it's too risky.
##
## For updates, check this official link...
## http://mods.db9.dk/viewforum.php?f=12
##
############################################################## 
## MOD History: 
##
##   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/
copy root/templates/subSilver/images/icon_mini_no_message.gif to templates/subSilver/images/
#
# If you need the subTrail ones, apply this commands too
# copy root/templates/subTrail/images/icon_mini_message.gif to templates/subTrail/images/
# copy root/templates/subTrail/images/icon_mini_no_message.gif to templates/subTrail/images/
#
#-----[ 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