##############################################################
## MOD Title: Smart Dates Update 1.0.1 to 1.0.2
## MOD Author: eviL3 < evil@phpbbmodders.net > (Igor Wiedler) http://phpbbmodders.net
## MOD Description: Update instructions
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 3 Minutes
##
## Files To Edit:
##      includes/functions.php,
##      language/lang_english/lang_main.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:
##
##   2007-02-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 ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
global $board_config, $lang;
#
#-----[ IN-LINE FIND ]------------------------------------------
#
, $userdata
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
;
#
#-----[ AFTER, ADD ]------------------------------------------
#
//-- mod : Smart Dates ------------------------------------------------------------
//-- add
	global $userdata;
//-- fin mod : Smart Dates --------------------------------------------------------
#
#-----[ FIND ]------------------------------------------
#
		$diff		= $diff + (3600 * $tz);
#
#-----[ REPLACE WITH ]------------------------------------------
#
//		$diff		= $diff + (3600 * $tz);
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//-- mod : Smart Dates ------------------------------------------------------------
//-- add
$lang = array_merge($lang, array(
#
#-----[ REPLACE WITH ]------------------------------------------
#
//-- mod : Smart Dates ------------------------------------------------------------
//-- add
$lang += array(
#
#-----[ FIND ]------------------------------------------
#
	)
);
#
#-----[ REPLACE WITH ]------------------------------------------
#
);
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
