############################################################## 
## Title: phpBB 3.0.4 to phpBB 3.0.5 subsilver2 Changes
## Author: Acyd Burn < N/A > (Meik Sievertsen) N/A 
## Description: 
##
##	These are the phpBB 3.0.4 to phpBB 3.0.5 subsilver2 Changes summed up into a
##	little Mod. These changes are only partial and do not include any code changes,
##	therefore not meant for updating phpBB.
##
##
## Files To Edit: 
##		styles/subsilver2/imageset/imageset.cfg
##		styles/subsilver2/style.cfg
##		styles/subsilver2/template/editor.js
##		styles/subsilver2/template/index_body.html
##		styles/subsilver2/template/mcp_notes_user.html
##		styles/subsilver2/template/mcp_warn_user.html
##		styles/subsilver2/template/overall_header.html
##		styles/subsilver2/template/posting_body.html
##		styles/subsilver2/template/posting_buttons.html
##		styles/subsilver2/template/posting_review.html
##		styles/subsilver2/template/posting_topic_review.html
##		styles/subsilver2/template/template.cfg
##		styles/subsilver2/template/ucp_header.html
##		styles/subsilver2/template/ucp_register.html
##		styles/subsilver2/template/ucp_zebra_foes.html
##		styles/subsilver2/template/viewforum_body.html
##		styles/subsilver2/theme/theme.cfg
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/imageset/imageset.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.4

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/style.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.4

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/editor.js

#
#-----[ FIND ]---------------------------------------------
# Around Line 19
window.onload = initInsertions;

#
#-----[ REPLACE WITH ]---------------------------------------------
# Just remove/delete the lines (replacing with an empty line) or comment out
// window.onload = initInsertions;


#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/index_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 65
<!-- IF not S_USER_LOGGED_IN -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/mcp_notes_user.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 8
			<td class="gen" align="center"><!-- IF USER_COLOR --><b style="color: #{USER_COLOR}"><!-- ELSE --><b><!-- ENDIF -->{USERNAME}</b></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<td class="gen" align="center"><b>{USERNAME_FULL}</b></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/mcp_warn_user.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 6
			<td class="gen" align="center"><!-- IF USER_COLOR --><b style="color: #{USER_COLOR}"><!-- ELSE --><b><!-- ENDIF -->{USERNAME}</b></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<td class="gen" align="center"><b>{USERNAME_FULL}</b></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/overall_header.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 9
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="" />
<meta name="description" content="" />

#
#-----[ AFTER, ADD ]---------------------------------------------
#
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

#
#-----[ FIND ]---------------------------------------------
# Around Line 38
	var perpage = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';

	if (page !== null && !isNaN(page) && page > 0)
	{
		document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * perpage);
	}

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	var per_page = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';

	if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
	{
		if (base_url.indexOf('?') == -1)
		{
			document.location.href = base_url + '?start=' + ((page - 1) * per_page);
		}
		else
		{
			document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * per_page);
		}
	}

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/posting_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 208
			<td valign="top" style="width: 100%;"><textarea name="message" rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" style="width: 98%;">{MESSAGE}</textarea></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<td valign="top" style="width: 100%;"><textarea name="message" rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();" style="width: 98%;">{MESSAGE}</textarea></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/posting_buttons.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 56
			<option value="150">{L_FONT_LARGE}</option>
			<option value="200">{L_FONT_HUGE}</option>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 150 -->
				<option value="150">{L_FONT_LARGE}</option>
				<!-- IF not MAX_FONT_SIZE or MAX_FONT_SIZE >= 200 -->
					<option value="200">{L_FONT_HUGE}</option>
				<!-- ENDIF -->
			<!-- ENDIF -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/posting_review.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
			<th>{L_MESSAGE}</th>
		</tr>
		<!-- BEGIN post_review_row -->

			<!-- IF post_review_row.S_ROW_COUNT is even -->	<tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->

#
#-----[ AFTER, ADD ]---------------------------------------------
#
				<!-- IF post_review_row.S_IGNORE_POST -->
				<td colspan="2">{post_review_row.L_IGNORE_POST}</td>
				<!-- ELSE -->

#
#-----[ FIND ]---------------------------------------------
# Around Line 88
			</tr>
			<tr>
				<td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
			</tr>

#
#-----[ BEFORE, ADD ]---------------------------------------------
# Add BEFORE the above lines, NOT after
			<!-- ENDIF -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/posting_topic_review.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 13
		</tr>
		<!-- BEGIN topic_review_row -->

			<!-- IF topic_review_row.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->


#
#-----[ AFTER, ADD ]---------------------------------------------
#
				<!-- IF topic_review_row.S_IGNORE_POST -->
				<td colspan="2">{topic_review_row.L_IGNORE_POST}</td>
				<!-- ELSE -->

#
#-----[ FIND ]---------------------------------------------
# Around Line 88
			</tr>
			<tr>
				<td class="spacer" colspan="2"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
			</tr>

#
#-----[ BEFORE, ADD ]---------------------------------------------
# Add BEFORE the above lines, NOT after
				<!-- ENDIF -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/template.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.4

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/ucp_header.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 34
			<td class="row2"><select name="group_list[]" multiple="true" size="5" style="width:150px">{S_GROUP_OPTIONS}</select></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<td class="row2"><select name="group_list[]" multiple="multiple" size="5" style="width:150px">{S_GROUP_OPTIONS}</select></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/ucp_register.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 86
		<td class="row1"><b class="genmed">{L_CONFIRM_CODE}: </b><br /><span class="gensmall">{L_CONFIRM_CODE_EXPLAIN}</span></td>
		<td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<td class="row1"><b class="genmed">{L_CONFIRM_CODE}: </b><br /><span class="gensmall">{L_CONFIRM_CODE_EXPLAIN} <!-- IF S_CONFIRM_REFRESH -->{L_VC_REFRESH_EXPLAIN}<!-- ENDIF --></span></td>
		<td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /><!-- IF S_CONFIRM_REFRESH -->&nbsp;<input type="submit" value="{L_VC_REFRESH}" class="btnlite" /><!-- ENDIF --></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/ucp_zebra_foes.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 27
<!-- TEST -->

#
#-----[ REPLACE WITH ]---------------------------------------------
# Just remove/delete the lines (replacing with an empty line)


#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/viewforum_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 114
	<!-- IF not S_USER_LOGGED_IN -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/theme/theme.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 24
version = 3.0.4

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.5

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