#################################################################
## MOD Title: phpBB 2.0.17 to phpBB 2.0.18 Code Changes Templates Only SoftBlue
## MOD Author: markus_petrux < N/A > (Markus) N/A
## MOD Description: These are the Changes from phpBB 2.0.17 to phpBB 2.0.18 summed up into a little
##     Mod. This might be very helpful if you want to update your Board and have installed a bunch
##     of Mods. Then it's normally easier to apply the Code Changes than to install all Mods again.
##
## MOD Version: 1.0.1
##
## Installation Level: Advanced
## Installation Time: 2 Hours
## Files To Edit: 17
##		templates/SoftBlue/bbcode.tpl
##		templates/SoftBlue/groupcp_info_body.tpl
##		templates/SoftBlue/index_body.tpl
##		templates/SoftBlue/login_body.tpl
##		templates/SoftBlue/overall_header.tpl
##		templates/SoftBlue/profile_add_body.tpl
##		templates/SoftBlue/search_body.tpl
##		templates/SoftBlue/search_results_posts.tpl
##		templates/SoftBlue/SoftBlue.cfg
##		templates/SoftBlue/admin/board_config_body.tpl
##		templates/SoftBlue/admin/forum_admin_body.tpl
##		templates/SoftBlue/admin/index_frameset.tpl
##		templates/SoftBlue/admin/page_header.tpl
##		templates/SoftBlue/admin/styles_addnew_body.tpl
##		templates/SoftBlue/admin/styles_edit_body.tpl
##		templates/SoftBlue/admin/styles_list_body.tpl
##		templates/SoftBlue/admin/user_edit_body.tpl
##
## Included Files: install/update_to_latest.php
## 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:
##
## Since this MOD is somehow complex, it is recommended to proceed as follows:
##
##   1) Disable the board from the ACP (General Admin, Configuration).
##
##   2) Make backups of your files and Database.
##
##   3) Upload and execute the file install/update_to_latest.php.
##
##   4) Remove the file install/update_to_latest.php from your webspace.
##
##   4) Install the MOD.
##
##   5) Enable the board from the ACP, back online.
##
##
## It is recommended to use EasyMOD to install this MOD ;-)
##
## Please, be sure to understand the MOD Templace actions.
## http://www.phpbb.com/kb/article.php?article_id=39
##
##
##############################################################
## MOD History:
##
## 2005-10-31 - Version 1.0.1
##	- adjusted for the repackage
##
## 2005-10-30 - Version 1.0.0 
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/bbcode.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#	<!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</A><!-- END email -->
#
<!-- BEGIN email -->

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
</A>

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
</a>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/groupcp_info_body.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#		<td class="row2"><span class="gen"><span class="gen"><input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} &nbsp;&nbsp;<input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} />	{L_GROUP_CLOSED} &nbsp;&nbsp;<input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} />	{L_GROUP_HIDDEN} &nbsp;&nbsp; <input class="mainoption" type="submit" name="groupstatus" value="{L_UPDATE}" /></span></td>
#
		<td class="row2"><span class="gen"><span class="gen">

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
<span class="gen"><span class="gen">

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
<span class="gen">

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
		<td class="catBottom" colspan="8" align="right"><span class="cattitle">
			<input type="submit" name="remove" value="{L_REMOVE_SELECTED}" class="mainoption" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<td class="catBottom" colspan="8" align="right">
			<span class="cattitle"><input type="submit" name="remove" value="{L_REMOVE_SELECTED}" class="mainoption" /></span>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/index_body.tpl

#
#
# NOTE --- The following action adds the ability to show the 'Mark forums read' link to logged in users only.
#
#-----[ FIND ]---------------------------------------------
#
	<td align="left"><span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
 	<td align="left">
 	<!-- BEGIN switch_user_logged_in -->
 		<span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span>
 	<!-- END switch_user_logged_in -->
 	</td>

#
#
# NOTE --- The following action is related to the new autologin option (it can be disabled from the ACP).
#
#-----[ FIND ]---------------------------------------------
#
		&nbsp;&nbsp; &nbsp;&nbsp;{L_AUTO_LOGIN} 
		<input class="text" type="checkbox" name="autologin" />

#
#-----[ BEFORE, ADD ]---------------------------------------------
#
		<!-- BEGIN switch_allow_autologin -->

#
#-----[ AFTER, ADD ]---------------------------------------------
#
		<!-- END switch_allow_autologin -->

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/login_body.tpl

#
#
# NOTE --- The following action is related to the new autologin option (it can be disabled from the ACP).
#
#-----[ FIND ]---------------------------------------------
#
		  <tr align="center"> 
			<td colspan="2"><span class="gen">{L_AUTO_LOGIN}: <input type="checkbox" name="autologin" /></span></td>
		  </tr>

#
#-----[ BEFORE, ADD ]---------------------------------------------
#
		  <!-- BEGIN switch_allow_autologin -->

#
#-----[ AFTER, ADD ]---------------------------------------------
#
		  <!-- END switch_allow_autologin -->

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/overall_header.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#						<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_FAQ}" class="mainmenu"><img src="templates/SoftBlue/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a></span><span class="mainmenu">&nbsp; &nbsp;<a href="{U_SEARCH}" class="mainmenu"><img src="templates/SoftBlue/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a>&nbsp; &nbsp;<a href="{U_MEMBERLIST}" class="mainmenu"><img src="templates/SoftBlue/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a>&nbsp; &nbsp;<a href="{U_GROUP_CP}" class="mainmenu"><img src="templates/SoftBlue/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a>&nbsp; 
#
{L_FAQ}</a></span><span class="mainmenu">

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
{L_FAQ}</a></span><span class="mainmenu">

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
{L_FAQ}</a>

#
#
# NOTE --- The following actions fix a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#						&nbsp;<a href="{U_REGISTER}" class="mainmenu"><img src="templates/SoftBlue/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a></span>&nbsp;
#
{L_REGISTER}</a></span>

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
{L_REGISTER}</a></span>

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
{L_REGISTER}</a>

#
#-----[ FIND ]---------------------------------------------
#
						</td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
						</span></td>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/profile_add_body.tpl

#
#
# NOTE --- The following actions fix a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" name="icq" class="post"style="width: 100px"  size="10" maxlength="15" value="{ICQ}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" name="icq" class="post" style="width: 100px"  size="10" maxlength="15" value="{ICQ}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 150px"  name="aim" size="20" maxlength="255" value="{AIM}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 150px"  name="aim" size="20" maxlength="255" value="{AIM}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 150px"  name="msn" size="20" maxlength="255" value="{MSN}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 150px"  name="msn" size="20" maxlength="255" value="{MSN}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 150px"  name="yim" size="20" maxlength="255" value="{YIM}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 150px"  name="yim" size="20" maxlength="255" value="{YIM}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 200px"  name="website" size="25" maxlength="255" value="{WEBSITE}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 200px"  name="website" size="25" maxlength="255" value="{WEBSITE}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 200px"  name="location" size="25" maxlength="100" value="{LOCATION}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 200px"  name="location" size="25" maxlength="100" value="{LOCATION}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 200px"  name="occupation" size="25" maxlength="100" value="{OCCUPATION}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 200px"  name="occupation" size="25" maxlength="100" value="{OCCUPATION}" />

#
#-----[ FIND ]---------------------------------------------
#
		<input type="text" class="post"style="width: 200px"  name="interests" size="35" maxlength="150" value="{INTERESTS}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="text" class="post" style="width: 200px"  name="interests" size="35" maxlength="150" value="{INTERESTS}" />

#
#-----[ FIND ]---------------------------------------------
#
		<textarea name="signature"style="width: 300px"  rows="6" cols="30" class="post">{SIGNATURE}</textarea>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<textarea name="signature" style="width: 300px" rows="6" cols="30" class="post">{SIGNATURE}</textarea>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/search_body.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#		<td class="row2" valign="middle" nowrap="nowrap"><span class="genmed"><select class="post" name="sort_by">{S_SORT_OPTIONS}</select><br /><input type="radio" name="sort_dir" value="ASC" /> {L_SORT_ASCENDING}<br /><input type="radio" name="sort_dir" value="DESC" checked /> {L_SORT_DESCENDING}</span>&nbsp;</td>
#
{S_SORT_OPTIONS}

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
checked />

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
checked="checked" />

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/search_results_posts.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#	<td class="catHead" colspan="2" height="28"><span class="topictitle"><img src="templates/SoftBlue/images/folder.gif" align="absmiddle">&nbsp; {L_TOPIC}:&nbsp;<a href="{searchresults.U_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a></span></td>
#
align="absmiddle">

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
align="absmiddle">

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
align="absmiddle" />

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- The following action fixes a bug in the SoftBlue template that might be present on other styles as well
#
templates/SoftBlue/SoftBlue.cfg

#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#	$images['topic_watch'] = "";
#
$images['topic_watch'] =

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
'topic_watch'

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
'Topic_watch'

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
# NOTE --- The following action is related to the new autologin option (this is where it can be enabled or disabled).
#
templates/SoftBlue/admin/board_config_body.tpl

#
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole lines on a fresh SoftBlue template look like this:
#		<td class="row1">{L_VISUAL_CONFIRM}<br /><span class="gensmall">{L_VISUAL_CONFIRM_EXPLAIN}</span></td>
#		<td class="row2"><input type="radio" name="enable_confirm" value="1" {CONFIRM_ENABLE} />{L_YES}&nbsp; &nbsp;<input type="radio" name="enable_confirm" value="0" {CONFIRM_DISABLE} />{L_NO}</td>
#	</tr>
#
{L_VISUAL_CONFIRM_EXPLAIN}
{CONFIRM_ENABLE}
</tr>

#
#-----[ AFTER, ADD ]---------------------------------------------
#
	<tr>
		<td class="row1">{L_ALLOW_AUTOLOGIN}<br /><span class="gensmall">{L_ALLOW_AUTOLOGIN_EXPLAIN}</span></td>
		<td class="row2"><input type="radio" name="allow_autologin" value="1" {ALLOW_AUTOLOGIN_YES} />{L_YES}&nbsp; &nbsp;<input type="radio" name="allow_autologin" value="0" {ALLOW_AUTOLOGIN_NO} />{L_NO}</td>
	</tr>
	<tr>
		<td class="row1">{L_AUTOLOGIN_TIME} <br /><span class="gensmall">{L_AUTOLOGIN_TIME_EXPLAIN}</span></td>
		<td class="row2"><input class="post" type="text" size="3" maxlength="4" name="max_autologin_time" value="{AUTOLOGIN_TIME}" /></td>
	</tr>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/forum_admin_body.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
		<td class="catRight" align="center" valign="middle"><span class="gen">&nbsp</span></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<td class="catRight" align="center" valign="middle"><span class="gen">&nbsp;</span></td>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/index_frameset.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template that might be present on other styles as well
#
#-----[ FIND ]---------------------------------------------
#
<html>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<html dir="{S_CONTENT_DIRECTION}">

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/page_header.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template that might be present on other styles as well
#
#-----[ FIND ]---------------------------------------------
#
<html>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<html dir="{S_CONTENT_DIRECTION}">

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/styles_addnew_body.tpl

#
#
# NOTE --- The following actions fix a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
<P>{L_STYLES_ADD_TEXT}</p>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<p>{L_STYLES_ADD_TEXT}</p>

#
#-----[ FIND ]---------------------------------------------
#
</table></form>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
</table>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/styles_edit_body.tpl

#
#
# NOTE --- The following action fixes a bug in the SoftBlue template that might be present on other styles as well
# NOTE --- A new template variable is now defined to replace a hardcoded language string
#
#-----[ FIND ]---------------------------------------------
# NOTE --- This is a partial match, the whole line on a fresh SoftBlue template looks like this:
#		<td class="row1">{L_STYLESHEET}:<br /><span class="gensmall">Filename for CSS stylesheet to use for this theme.</span></td>
#
Filename for CSS stylesheet to use for this theme.

#
#-----[ IN-LINE FIND ]---------------------------------------------
#
Filename for CSS stylesheet to use for this theme.

#
#-----[ IN-LINE REPLACE WITH ]---------------------------------------------
#
{L_STYLESHEET_EXPLAIN}

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/styles_list_body.tpl

#
#
# NOTE --- The following actions fix a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
<P>{L_STYLES_TEXT}</p>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<p>{L_STYLES_TEXT}</p>

#
#-----[ FIND ]---------------------------------------------
#
</table></form>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
</table>

#
#-----[ OPEN ]---------------------------------------------
# NOTE --- Remember to do this for all your installed styles!
#
templates/SoftBlue/admin/user_edit_body.tpl

#
#
# NOTE --- The following actions fix a bug in the SoftBlue template
#
#-----[ FIND ]---------------------------------------------
#
		<input class="post" type="text" name="avatarurl" size="40" class="post" style="width: 200px"  />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input class="post" type="text" name="avatarurl" size="40" style="width: 200px"  />

#
#-----[ FIND ]---------------------------------------------
#
		<input class="post" type="text" name="avatarremoteurl" size="40" class="post" style="width: 200px"  />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input class="post" type="text" name="avatarremoteurl" size="40" style="width: 200px"  />

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