########################################################
## 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/prosilver/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 RC3.
##
##############################################################
## MOD History: 
##
##   2007-07-09 - 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/prosilver/template/bbcode.html
#
#-----[ FIND ]------------------------------------------ 
#
<!-- BEGIN hide --><dl class="hidebox"><dt class="hide">{L_MESSAGE_HIDDEN}</dt><dd>{L_MESSAGE_HIDDEN_DESCRIPTION}</dd></dl><!-- END hide -->
#
#-----[ REPLACE WITH ]------------------------------------------ 
#
<!-- BEGIN hide --><dl class="hidebox"><dt class="hide"><img src="./styles/prosilver/imageset/post_hidden_warn.gif" alt="{L_MESSAGE_HIDDEN}" /></dt><dd><img src="./styles/prosilver/imageset/post_hidden_warn_description.gif" alt="{L_MESSAGE_HIDDEN_DESCRIPTION}" /></dd></dl><!-- END hide -->
#
#-----[ COPY ]------------------------------------------
#
copy post_hidden_warn.gif to styles/prosilver/imageset/post_hidden_warn.gif
copy post_hidden_warn_description.gif to styles/prosilver/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