########################################################
## MOD Title: [phpBB3] Simple Hide BBcode MOD Add-on - Use Warning Image
## MOD Author: ycl6 < ycl6@users.sourceforge.net > (Y.C. LIN) http://macphpbbmod.sourceforge.net/
## MOD Description: MOD tutorial for using warning image instead of warning text. You may replace the provided images with your own images.
## MOD Version: 0.0.1
##
## Installation Level: Easy
## Installation Time: 3 Minutes
##
## Files To Edit: 1
##	styles/subsilver2/template/bbcode.html
##
## Included Files: 2
##	post_hidden_warn.gif
##	post_hidden_warn_description.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:
## 	Tested on phpBB 3.0.0 RC5.
##
##############################################################
## MOD History: 
##
##   2007-08-26 - Version 0.0.1
##      - Initial Release for BETA testing
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/template/bbcode.html
#
#-----[ FIND ]------------------------------------------ 
#
<div class="hidetitle"><b>{L_MESSAGE_HIDDEN}:</b></div><div class="hidecontent">{L_MESSAGE_HIDDEN_DESCRIPTION}</div>
#
#-----[ REPLACE WITH ]------------------------------------------ 
#
<div class="hidetitle"><img src="./styles/subsilver2/imageset/post_hidden_warn.gif" alt="{L_MESSAGE_HIDDEN}" /></div><div class="hidecontent"><img src="./styles/subsilver2/imageset/post_hidden_warn_description.gif" alt="{L_MESSAGE_HIDDEN_DESCRIPTION}" /></div>
#
#-----[ COPY ]------------------------------------------
#
copy post_hidden_warn.gif to styles/subsilver2/imageset/post_hidden_warn.gif
copy post_hidden_warn_description.gif to styles/subsilver2/imageset/post_hidden_warn_description.gif
#
#-----[ DIY INSTRUCTIONS ]------------------------------------------
#
If you want to use your own images, please replace "post_hidden_warn.gif" and "post_hidden_warn_description.gif" with your own image
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM