############################################################## 
## MOD Title:		Ranks summarize : upgrade from 1.0.3 to 1.0.4
## MOD Author:		Ptirhiik < ptirhiik@clanmckeen.com > (Pierre) http://rpgnet.clanmckeen.com
## MOD Description:
##			Upgrade Ranks summarize from v 1.0.3 to v 1.0.4
## MOD Version:		1.0.4
## 
## Installation Level:	Easy
## Installation Time:	5 Minutes
## Files To Edit:
##			includes/functions.php 
##			language/lang_english/lang_main.php 
##
## Included Files:
##			lang_extend_ranks.php
##			mod-lang_settings/lang_extend_mac.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: 
## 
############################################################## 
## MOD History: 
## 
##   2003-10-28 - Version 1.0.1
##      - add the lang setttings tool
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ COPY ]------------------------------------------------
#
copy lang_extend_ranks.php to language/lang_english/lang_extend_ranks.php
#
#-----[ COPY ]------------------------------------------------
#
# mod-lang_settings
#
copy mod-lang_settings/lang_extend_mac.php to includes/lang_extend_mac.php
#
#-----[ OPEN ]------------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------------
#
<?php
#
#-----[ AFTER, ADD ]------------------------------------------
#
# This part can already be existing : if so, just skip it
#
//-- mod : language settings -----------------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------------
#
	//
	// Set up style
	//
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
# This part can already be existing : if so, just skip it
#
//-- mod : language settings -----------------------------------------------------------------------
//-- add
	include($phpbb_root_path . './includes/lang_extend_mac.' . $phpEx);
//-- fin mod : language settings -------------------------------------------------------------------

#
#-----[ FIND ]------------------------------------------------
#
		}

		if ( empty($template) )
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
# This part can already be existing : if so, just skip it
#
//-- mod : language settings -----------------------------------------------------------------------
//-- add
			include($phpbb_root_path . './includes/lang_extend_mac.' . $phpEx);
//-- fin mod : language settings -------------------------------------------------------------------
#
#-----[ OPEN ]------------------------------------------------
#
# Here we step back to the original file
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------------
#
<?php
//-- mod : ranks -----------------------------------------------------------------------------------
#
#-----[ REPLACE WITH ]---------------------------------------- 
#
<?php
#
#-----[ FIND ]------------------------------------------------
#
//-- mod : ranks -----------------------------------------------------------------------------------
//-- add
$lang['Ranks'] = 'Ranks';
$lang['Special_ranks'] = 'Special ranks';
$lang['Rank_minimum'] = 'Minimum Posts';
$lang['Total_users'] = 'Total of users';
//-- fin mod : ranks -------------------------------------------------------------------------------

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