##############################################################
## MOD Title: 		Zero duplicate 0.4.2 => 0.4.4 update
## MOD Author: 		dcz <n/a> http://www.phpbb-seo.com/
## MOD Description: 	This are the update steps for the phpBB SEO Zero duplicate 0.4.2 => 0.4.4 update.
## 			Check http://www.phpbb-seo.com/boards/phpbb3-zero-duplicate/phpbb3-seo-zero-duplicate-vt1220.html
## 			for the latest version or to get help with this MOD
##
## MOD Version: 	1.0
##
## Installation Level: 	Eazy
## Installation Time: 	3 Minutes
## Files To Edit: 	2
##			phpbb_seo/phpbb_seo_class.php,
##			viewtopic.php.
##
## Included Files: n/a
##############################################################
## Author Notes:
## _____________
##
## This are the update steps for the phpBB3 SEO Zero duplicate 0.4.2 => 0.4.4 update.
##
##############################################################
## MOD History:
##
##	2008-07-23 - 1.0
##		- First version released
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################


#
#-----[ DIY INSTRUCTIONS ]--------------------------------------------------
#
_________________________________________
>>>>   INSTALLATION INSTRUCTIONS    <<<<<
_________________________________________

This update procedure is very easy and should not cause problem.

#
#-----[ OPEN ]------------------------------------------
#

phpbb_seo/phpbb_seo_class.php

#
#-----[ FIND ]------------------------------------------
#
				if (  !$user->data['is_registered'] ) {
#
#-----[ REPLACE WITH ]------------------------------------------
#
				if ( empty($user->data['is_registered']) ) {
#
#-----[ OPEN ]------------------------------------------
#

viewtopic.php

#
#-----[ FIND ]------------------------------------------
#
		'p' => array('val' => $post_id, 'keep' => true),
#
#-----[ REPLACE WITH ]------------------------------------------
#
		'p' => array('val' => $post_id, 'keep' => true, 'force' => true),
#
#-----[ FIND ]------------------------------------------
#
		'view' => array('val' => $view, 'keep' => $view == 'print' ? (boolean) $auth->acl_get('f_print', $forum_id) : true),
#
#-----[ REPLACE WITH ]------------------------------------------
#
		'view' => array('val' => $view, 'keep' => $view == 'print' ? (boolean) $auth->acl_get('f_print', $forum_id) : false),
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
