-
Bug
-
Resolution: Invalid
-
None
i was checking my syntax and it said the there was an invalid use of font tags but they were in quotation marks
see the mod:
##############################################################
-
- MOD Title: mod_title_goes_here
- MOD Author: itwhiz.jnr < itwhiz.jnr@blueyonder.co.uk
> (Daniel Moran) http://82.36.243.108/
- MOD Description: Replaces /me with the authors username and /you with the readers username
- MOD Version: 1.0.0
## - Installation Level: Easy
- Installation Time: ~ 3 Minutes
- Files To Edit: viewtopic.php
- Included Files: N/A
############################################################## - 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:
## - Option to change the font color
##
############################################################## - MOD History:
##
############################################################## - Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#----[ OPEN ]-----------------------------------------
#
viewtopic.php
#
#----[ FIND ]-----------------------------------------
#
$message = make_clickable($message);
#
#----[ AFTER, ADD ]-----------------------------------------
#
$message = str_replace("/me ","<font color=\"orange\"> " .$poster. "</font> ",$message);
$message = str_replace("/you ","<font color=\"violet\"> " .$userdata['username']. "</font> ",$message);
#
#----[ SAVE/CLOSE ALL FILES ]-----------------------------------------
#
- EoM