##############################################################
## MOD Title:		Update phpBB3 SEO Optimal titles 1.0.0 => 1.0.2
## 
## MOD Author:		dcz <n/a> http://www.phpbb-seo.com/
##
## MOD Description:	This are the update steps for the phpBB3 SEO Optimal titles 1.0.0 => 1.0.2
##			Check http://www.phpbb-seo.com/boards/phpbb3-seo-toolkit/seo-dynamic-meta-tags-vt1308.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
##       		search.php
##
## Included Files: 	n/a
##
## License: 		http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## Author Notes:
## _____________
##
## This are the update steps for the phpBB3 SEO Optimal titles 1.0.0 => 1.0.2 update.
## 
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

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

search.php

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

	// www.phpBB-SEO.com SEO TOOLKIT BEGIN - TITLE
	$l_search_title = empty($l_search_title) && !empty($author) ? $author  . ' - ' . $user->lang['POSTS'] : $l_search_title;
	// www.phpBB-SEO.com SEO TOOLKIT END - TITLE

#
#-----[ REPLACE, WITH ]------------------------------------------
#

	// www.phpBB-SEO.com SEO TOOLKIT BEGIN - TITLE
	$l_search_title = empty($l_search_title) && !empty($author) ? $author  . ' - ' . ($show_results != 'posts' ? $user->lang['TOPICS'] : $user->lang['POSTS']) : $l_search_title;
	// www.phpBB-SEO.com SEO TOOLKIT END - TITLE

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