############################################################## 
## MOD Title: Sub-templates - upgrade from 1.0.2 to 1.0.3
## MOD Author: Ptirhiik < admin@rpgnet-fr.com > (Pierre) http://www.rpgnet-fr.com
## MOD Description: Upgrade from sub-template 1.0.2 to sub-template 1.0.3
## MOD Version: 1.0.3
## 
## Installation Level: easy
## Installation Time: 3 Minutes
## Files To Edit: 
##				includes/template.php
## Included Files: (n/a)
############################################################## 
## 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: 
##	This mod requires sub-templates v 1.0.0 to be installed on the board
############################################################## 
## MOD History: 
## 
##   2003-07-27 - Version 1.0.3
##	- remove phpbb_realpath() func usage (only working in phpbb 2.0.4)
##   2003-07-25 - Version 1.0.2
##	- add two global var to be used with Qbar mod
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ OPEN ]------------------------------------------------
#
includes/template.php
#
#-----[ FIND ]------------------------------------------------
#
		$sub_templates_cfg = phpbb_realpath($this->root . '/sub_templates.cfg');
#
#-----[ REPLACE WITH ]----------------------------------------
#
		$sub_templates_cfg = $this->root . '/sub_templates.cfg';
#
#-----[ FIND ]------------------------------------------------
#
						$cur_template_path = phpbb_realpath($this->root . '/' . $sub_templates[$key]['dir']);
#
#-----[ REPLACE WITH ]----------------------------------------
#
						$cur_template_path = $this->root . '/' . $sub_templates[$key]['dir'];
#
#-----[ FIND ]------------------------------------------------
#
				$current_template_path = phpbb_realpath($this->root . '/' . $sub_img_path);
#
#-----[ REPLACE WITH ]----------------------------------------
#
				$current_template_path = $this->root . '/' . $sub_img_path;
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM