Kod: Tümünü seç
##############################################################
## MOD Title: phpBB3 Title SEO
## MOD Author: angelside < n/a > (Sevdin Filiz) http://www.**********
## MOD Description: this mod change board title's more seo friendy
## MOD Version: 1.0.3b
##
## Installation Level: Easy
## Installation Time: 5 minutes
## Files To Edit: index.php
## viewforum.php
## viewtopic.php
## styles/subSilver/template/overall_header.html
## Included Files:
## 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:
##
## Over shorter titles the only relevant keywords contained to get
## and everyone times in the title not spend which one a straight
## index, forum, topic indicates
##
##############################################################
## MOD History:
##
## 2007-02-21 - Version 1.0.0b
## - first release
##
## 2007-04-17 - Version 1.0.1b
## - change header title for index.php
##
## 2007-07-15 - Version 1.0.2b
## - phpBB3 RC3 test
## - added description section
##
## 2008-01-14 - Version 1.0.3b
## - phpBB3 Gold test
## - change many variables
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
page_header($user->lang['INDEX']);
#
#-----[ REPLACE WITH ]------------------------------------------
#
page_header($config['sitename'] . ' - ' . $config['site_desc']);
#
#-----[ OPEN ]------------------------------------------
#
viewforum.php
#
#-----[ FIND ]------------------------------------------
#
page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);
#
#-----[ REPLACE WITH ]------------------------------------------
#
page_header($forum_data['forum_name'] . ' - ' . $forum_data['forum_desc']);
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
page_header($user->lang['VIEW_TOPIC'] .' - ' . $topic_data['topic_title']);
#
#-----[ REPLACE WITH ]------------------------------------------
#
page_header($topic_data['topic_title']);
#
#-----[ OPEN ]------------------------------------------
#
styles/subSilver/template/overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
#
#-----[ REPLACE WITH ]------------------------------------------
#
<title><!-- IF S_IN_MCP -->{L_MCP} - <!-- ELSEIF S_IN_UCP -->{L_UCP} - <!-- ENDIF -->{PAGE_TITLE}</title>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM