##############################################################
## MOD Title: 		phpBB SEO No Duplicate 0.6.2 => 0.6.4 update
## MOD Author: 		dcz <n/a> http://www.phpbb-seo.com/
## MOD Description: 	This are the update steps for the phpBB SEO No Duplicate 0.6.2 => 0.6.4 update.
## 			Check http://www.phpbb-seo.com/en/phpbb-seo-toolkit/phpbb3-seo-no-duplicate-t1225.html
## 			for the latest version or to get help with this MOD.
##
## MOD Version: 	1.0
##
## Installation Level: 	Easy
## Installation Time: 	1 Minutes
## Files To Edit: 	1
##			includes/functions_display.php.
##
## Included Files:	0
##
##############################################################
## Author Notes:
## _____________
##
## This are the update steps for the phpBB SEO No Duplicate 0.6.2 => 0.6.4 update.
##
## LICENSE: http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License
##
##############################################################
## MOD History:
##
##	2010-04-05 - 1.0
##		- First version released
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

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

includes/functions_display.php

#
#-----[ FIND ]------------------------------------------
#
				// www.phpBB-SEO.com SEO TOOLKIT BEGIN -> no dupe
				if (@$phpbb_seo->seo_opt['no_dupe']['on']) {
					$forum_rows[$parent_id]['topic_id'] = $row['topic_id'];
					$forum_rows[$parent_id]['topic_title'] = $row['topic_title'];
					$forum_rows[$parent_id]['topic_type'] = $row['topic_type'];
					$forum_rows[$parent_id]['forum_password'] = $row['forum_password'];


#
#-----[ AFTER, ADD ]------------------------------------------
#

					if (!empty($row['topic_url'])) {
						$forum_rows[$parent_id]['topic_url'] = $row['topic_url'];
					}

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