############################################################## 
## MOD Title:          Upgrade to Signatures control 1.2.3
## MOD Author:         -=ET=- < space_et@tiscali.fr > (n/a) http://www.golfexpert.net/phpbb
## MOD Description:    This MOD will allow you to upgrade your
##                     Signatures control MOD from 1.2.2
##                     to 1.2.3
## MOD Version:        1.0.0
## MOD Compatibility:  2.0.6->2.0.15 (prior release not tested)
## 
## Installation Level: Easy
## Installation Time:  5 Minutes (1mn by EasyMOD of Nuttzy)
## Files To Edit:      1
##      admin/admin_users.php 
##
## Included Files:     6
##      root/language/lang_dutch/lang_sig_control.php
##      root/language/lang_english/lang_sig_control.php
##      root/language/lang_french/lang_sig_control.php
##      root/language/lang_german/lang_sig_control.php
##      root/language/lang_portuguese/lang_sig_control.php
##      root/language/lang_russian/lang_sig_control.php
##
############################################################## 
## 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: 
## 
## Signatures control 1.2.2 needs to be already installed!!!
##
## For the other author notes, please read the ones on the
## full install MOD in the root dir of this MOD archive.
##
##############################################################
## MOD History: 
## 
##   2005-06-04 - Version 1.0.0
##      - Initial release 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
# 
#-----[ OPEN ]------------------------------------------------ 
# 
admin/admin_users.php 

# 
#-----[ FIND ]------------------------------------------------
# 
// Start add - Signatures control MOD
/* Unable signature length control when modified in the ACP
// End add - Signatures control MOD

if ($signature != '')
# 
#-----[ REPLACE WITH ]----------------------------------------
# 
		if ($signature != '')
# 
#-----[ FIND ]------------------------------------------------
# 
if ( strlen($sig_length_check) > $board_config['max_sig_chars'] )

# 
#-----[ IN-LINE FIND ]----------------------------------------
# 
$board_config['max_sig_chars']

# 
#-----[ IN-LINE REPLACE WITH ]--------------------------------
# 
999999999

# 
#-----[ FIND ]------------------------------------------------
# 
// Start add - Signatures control MOD
Unable signature length control when modified in the ACP */
// End add - Signatures control MOD

# 
#-----[ REPLACE WITH ]----------------------------------------
# 
// 3 lines deleted - Signatures control MOD
# 
#-----[ SAVE/CLOSE ALL FILES ]-------------------------------- 
# 
# EoM