#################################################################
## MOD Title:           Moderator Tags Update 1.2.1 to 1.2.2
## MOD Author:          Coagulant < baryshev@gmail.com > (Baryshev Ilya) http://coagulant.com.ru
## MOD Description:     Allows to update Moderator Tags Mod from version 1.2.1 to 1.2.2
##
## MOD Version:         1.0.0
## Installation Level:  Easy
## Installation Time:   1 Minute
## Files To Edit:       (1)
##                      includes/functions_validate.php
## Included Files:      N/A
## 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:
##
##
##############################################################
## MOD History:
##
##  2005-09-08 - Version 1.0.0
##             - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

# 
#-----[ OPEN ]------------------------------------------ 
# 
includes/functions_validate.php 

# 
#-----[ FIND ]------------------------------------------ 
# 
   // website has to start with http://, followed by something with length at least 3 that 
   // contains at least one dot. 

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 
   // BEGIN Moderator Tags 
   // Tags [mod] [/mod] are prohibited in signatures for everyone 
   if (preg_match("/\[mod.*?\]/si", $sig)) 
   { 
      $sig = ''; 
   } 
   // END Moderator Tags

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