############################################################## 
## Title: phpBB 3.0.7-PL1 to phpBB 3.0.8 prosilver Changes
## Author: naderman < naderman@phpbb.com > (Nils Adermann) http://www.phpbb.com 
## Description: 
##		
##		
##		These are the phpBB 3.0.7-PL1 to phpBB 3.0.8 prosilver 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/prosilver/imageset/imageset.cfg
##		styles/prosilver/style.cfg
##		styles/prosilver/template/captcha_recaptcha.html
##		styles/prosilver/template/editor.js
##		styles/prosilver/template/forum_fn.js
##		styles/prosilver/template/index_body.html
##		styles/prosilver/template/login_body.html
##		styles/prosilver/template/mcp_post.html
##		styles/prosilver/template/mcp_reports.html
##		styles/prosilver/template/overall_header.html
##		styles/prosilver/template/posting_buttons.html
##		styles/prosilver/template/posting_editor.html
##		styles/prosilver/template/posting_topic_review.html
##		styles/prosilver/template/quickreply_editor.html
##		styles/prosilver/template/search_body.html
##		styles/prosilver/template/template.cfg
##		styles/prosilver/template/ucp_pm_history.html
##		styles/prosilver/template/ucp_pm_viewfolder.html
##		styles/prosilver/template/ucp_profile_signature.html
##		styles/prosilver/template/viewforum_body.html
##		styles/prosilver/theme/bidi.css
##		styles/prosilver/theme/content.css
##		styles/prosilver/theme/forms.css
##		styles/prosilver/theme/print.css
##		styles/prosilver/theme/theme.cfg
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = prosilver
copyright = &copy; phpBB Group, 2007

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

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

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = prosilver
copyright = &copy; phpBB Group, 2007

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.7
#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.8
#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/captcha_recaptcha.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 14
	<dd>
		<script type="text/javascript">
		// <![CDATA[
		var RecaptchaOptions = {
			lang : '{LA_RECAPTCHA_LANG}',

#
#-----[ AFTER, ADD ]---------------------------------------------
#
			theme : 'clean',

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 155
	if (!isNaN(textarea.selectionStart))
	{
		var sel_start = textarea.selectionStart;
		var sel_end = textarea.selectionEnd;


#
#-----[ FIND ]---------------------------------------------
# Around Line 160
		mozWrap(textarea, text, '')

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		mozWrap(textarea, text, '');

#
#-----[ FIND ]---------------------------------------------
# Around Line 192
function addquote(post_id, username)
{
	var message_name = 'message_' + post_id;
	var theSelection = '';
	var divarea = false;


#
#-----[ REPLACE WITH ]---------------------------------------------
#
function addquote(post_id, username, l_wrote)
{
	var message_name = 'message_' + post_id;
	var theSelection = '';
	var divarea = false;

	if (l_wrote === undefined)
	{
		// Backwards compatibility
		l_wrote = 'wrote';
	}


#
#-----[ FIND ]---------------------------------------------
# Around Line 260
			var lines = split_lines(theSelection);
			for (i = 0; i < lines.length; i++)
			{
				insert_text('> ' + lines[i] + '\n')

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			insert_text(username + ' ' + l_wrote + ':' + '\n');
			var lines = split_lines(theSelection);
			for (i = 0; i < lines.length; i++)
			{
				insert_text('> ' + lines[i] + '\n');

#
#-----[ FIND ]---------------------------------------------
# Around Line 294
				var splitAt = line.indexOf(' ', 80);
				
				if (splitAt == -1)
				{
					splitLines[j] = line;

#
#-----[ FIND ]---------------------------------------------
# Around Line 299
					j++

#
#-----[ REPLACE WITH ]---------------------------------------------
#
					j++;

#
#-----[ FIND ]---------------------------------------------
# Around Line 303
					splitLines[j] = line.substring(0, splitAt);
					line = line.substring(splitAt);
					j++;
				}
			}

#
#-----[ FIND ]---------------------------------------------
# Around Line 308
			while(splitAt != -1)

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			while(splitAt != -1);

#
#-----[ FIND ]---------------------------------------------
# Around Line 324
	var s2 = (txtarea.value).substring(selStart, selEnd)

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	var s2 = (txtarea.value).substring(selStart, selEnd);

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/forum_fn.js

#
#-----[ FIND ]---------------------------------------------
# Around Line 96
*/
function dE(n, s)
{
	var e = document.getElementById(n);

	if (!s)
	{
		s = (e.style.display == '' || e.style.display == 'block') ? -1 : 1;
	}
	e.style.display = (s == 1) ? 'block' : 'none';

#
#-----[ REPLACE WITH ]---------------------------------------------
#
* type = string: inline, block, inline-block or other CSS "display" type
*/
function dE(n, s, type)
{
	if (!type)
	{
		type = 'block';
	}

	var e = document.getElementById(n);
	if (!s)
	{
		s = (e.style.display == '' || e.style.display == type) ? -1 : 1;
	}
	e.style.display = (s == 1) ? type : 'none';

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 4
		<li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><!-- IF S_USER_LOGGED_IN --> &bull; <a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a> &bull; <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF --> &bull; <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></li>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><!-- IF S_LOAD_UNREADS --> &bull; <a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a><!-- ENDIF --><!-- IF S_USER_LOGGED_IN --> &bull; <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF --> &bull; <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></li>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/login_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
<!-- INCLUDE overall_header.html -->


#
#-----[ AFTER, ADD ]---------------------------------------------
#
<script type="text/javascript">
// <![CDATA[
	onload_functions.push('document.getElementById("{USERNAME_CREDENTIAL}").focus();');
// ]]>
</script>


#
#-----[ FIND ]---------------------------------------------
# Around Line 36
			<!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
			<dd><label for="viewonline"><input type="checkbox" name="viewonline" id="viewonline" tabindex="5" /> {L_HIDE_ME}</label></dd>
		</dl>
		<!-- ENDIF -->


#
#-----[ AFTER, ADD ]---------------------------------------------
#
		{S_LOGIN_REDIRECT}

#
#-----[ FIND ]---------------------------------------------
# Around Line 36
		<dl>
			<dt>&nbsp;</dt>
			<dd>{S_HIDDEN_FIELDS}<input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" /></dd>
		</dl>

#
#-----[ FIND ]---------------------------------------------
# Around Line 40
		{S_LOGIN_REDIRECT}

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


#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/mcp_post.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 52
		<ul class="profile-icons">
			<li class="edit-icon"><a href="{U_EDIT}" title="{L_EDIT_POST}"><span>{L_EDIT_POST}</span></a></li>
		</ul>
		<!-- ENDIF -->


#
#-----[ AFTER, ADD ]---------------------------------------------
#
		<span class="right-box" id="expand"><a href="#post_details" onclick="viewableArea(getElementById('post_details'), true); var rev_text = getElementById('expand').getElementsByTagName('a').item(0).firstChild; if (rev_text.data == '{LA_EXPAND_VIEW}'){rev_text.data = '{LA_COLLAPSE_VIEW}'; } else if (rev_text.data == '{LA_COLLAPSE_VIEW}'){rev_text.data = '{LA_EXPAND_VIEW}'}; return false;">{L_EXPAND_VIEW}</a></span>


#
#-----[ FIND ]---------------------------------------------
# Around Line 84
			<p class="rules">
				{REPORTED_IMG} <a href="{U_MCP_REPORT}"><strong>{L_MESSAGE_REPORTED}</strong></a>
			</p>
		<!-- ENDIF -->


#
#-----[ FIND ]---------------------------------------------
# Around Line 89
		<div class="content">

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<div class="content" id="post_details">

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/mcp_reports.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 52
						{L_FORUM}: <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a></span>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
						<!-- IF postrow.U_VIEWFORUM -->{L_FORUM}: <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a><!-- ELSE -->{postrow.FORUM_NAME}<!-- ENDIF --></span>

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 9
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 77
	<input type="button" class="button2" accesskey="t" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	<input type="button" class="button2" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/posting_editor.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 185
			<!-- IF S_HAS_DRAFTS --><input type="submit" accesskey="d" tabindex="8" name="load" value="{L_LOAD}" class="button2" onclick="load_draft = true;" />&nbsp; <!-- ENDIF -->
			<!-- IF S_SAVE_ALLOWED --><input type="submit" accesskey="k" tabindex="7" name="save" value="{L_SAVE}" class="button2" />&nbsp; <!-- ENDIF -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<!-- IF S_HAS_DRAFTS --><input type="submit" accesskey="d" tabindex="8" name="load" value="{L_LOAD_DRAFT}" class="button2" onclick="load_draft = true;" />&nbsp; <!-- ENDIF -->
			<!-- IF S_SAVE_ALLOWED --><input type="submit" accesskey="k" tabindex="7" name="save" value="{L_SAVE_DRAFT}" class="button2" />&nbsp; <!-- ENDIF -->

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
				<li class="quote-icon"><a href="#postingbox" onclick="addquote({topic_review_row.POST_ID}, '{topic_review_row.POSTER_QUOTE}');" title="{L_QUOTE} {topic_review_row.POST_AUTHOR}"><span>{L_QUOTE} {topic_review_row.POST_AUTHOR}</span></a></li>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
				<li class="quote-icon"><a href="#postingbox" onclick="addquote({topic_review_row.POST_ID}, '{topic_review_row.POSTER_QUOTE}', '{LA_WROTE}');" title="{L_QUOTE} {topic_review_row.POST_AUTHOR}"><span>{L_QUOTE} {topic_review_row.POST_AUTHOR}</span></a></li>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/quickreply_editor.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 59
					<input type="submit" accesskey="f" tabindex="6" name="full_editor" value="{L_FULL_EDITOR}" class="button2" />&nbsp;

#
#-----[ REPLACE WITH ]---------------------------------------------
#
					<input type="submit" accesskey="f" tabindex="7" name="full_editor" value="{L_FULL_EDITOR}" class="button2" />&nbsp;

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/search_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
<!-- INCLUDE overall_header.html -->


#
#-----[ AFTER, ADD ]---------------------------------------------
#
<script type="text/javascript">
// <![CDATA[
	onload_functions.push('document.getElementById("keywords").focus();');
// ]]>
</script>


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

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this template
name = prosilver
copyright = &copy; phpBB Group, 2007

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

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

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/ucp_pm_history.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
	{L_MESSAGE_HISTORY}: {HISTORY_TITLE}
</h3>

<div id="topicreview">

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	{L_MESSAGE_HISTORY}:
</h3>

<div id="topicreview">
	<script type="text/javascript">
	// <![CDATA[
		bbcodeEnabled = {S_BBCODE_ALLOWED};
	// ]]>
	</script>

#
#-----[ FIND ]---------------------------------------------
# Around Line 15
				<li class="quote-icon"><a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#postingbox" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}');"<!-- ENDIF --> title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a></li>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
				<li class="quote-icon"><a <!-- IF history_row.U_QUOTE -->href="{history_row.U_QUOTE}"<!-- ELSE -->href="#postingbox" onclick="addquote({history_row.MSG_ID}, '{history_row.MESSAGE_AUTHOR_QUOTE}', '{LA_WROTE}');"<!-- ENDIF --> title="{L_QUOTE} {history_row.MESSAGE_AUTHOR}"><span>{L_QUOTE} {history_row.MESSAGE_AUTHOR}</span></a></li>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/ucp_pm_viewfolder.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 69
						<!-- IF messagerow.S_TOPIC_REPORTED --><a href="{messagerow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --> {messagerow.ATTACH_ICON_IMG}<br />

#
#-----[ REPLACE WITH ]---------------------------------------------
#
						<!-- IF messagerow.S_PM_REPORTED --><a href="{messagerow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --> {messagerow.ATTACH_ICON_IMG}<br />

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/template/ucp_profile_signature.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 2

<form id="postform" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>

<h2>{L_TITLE}</h2>


#
#-----[ FIND ]---------------------------------------------
# Around Line 7
<!-- IF SIGNATURE_PREVIEW -->

#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF SIGNATURE_PREVIEW != '' -->

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

#
#-----[ FIND ]---------------------------------------------
# Around Line 37
			<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div>

#
#-----[ FIND ]---------------------------------------------
# Around Line 120
		<div class="forumbg<!-- IF topicrow.S_TOPIC_TYPE_SWITCH --> announcement<!-- ENDIF -->">
		<div class="inner"><span class="corners-top"><span></span></span>
		<ul class="topiclist">
			<li class="header">
				<dl class="icon">
					<dt><!-- IF S_DISPLAY_ACTIVE -->{L_ACTIVE_TOPICS}<!-- ELSEIF topicrow.S_TOPIC_TYPE_SWITCH and topicrow.S_TOPIC_TYPE gt 1 -->{L_ANNOUNCEMENTS}<!-- ELSE -->{L_TOPICS}<!-- ENDIF --></dt>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<div class="forumbg<!-- IF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) --> announcement<!-- ENDIF -->">
		<div class="inner"><span class="corners-top"><span></span></span>
		<ul class="topiclist">
			<li class="header">
				<dl class="icon">
					<dt><!-- IF S_DISPLAY_ACTIVE -->{L_ACTIVE_TOPICS}<!-- ELSEIF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) -->{L_ANNOUNCEMENTS}<!-- ELSE -->{L_TOPICS}<!-- ENDIF --></dt>

#
#-----[ FIND ]---------------------------------------------
# Around Line 135
		<li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_GLOBAL --> global-announce<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/bidi.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 234
.rtl a.top {
	float: left;
}

.rtl a.top2 {

#
#-----[ AFTER, ADD ]---------------------------------------------
#
	background-position: 100% 50%;

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/content.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 294
	border-bottom-width: 0;
}

.post-ignore .postbody {
	display: none;

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

/* MCP Post details
----------------------------------------*/
#post_details
{
	/* This will only work in IE7+, plus the others */
	overflow: auto;
	max-height: 300px;
}

#expand
{
	clear: both;

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/forms.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 92
	background-color: transparent;
}

fieldset.fields1 div {
	margin-bottom: 3px;

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

/* Set it back to 0px for the reCaptcha divs: PHPBB3-9587 */
fieldset.fields1 #recaptcha_widget_div div {
	margin-bottom: 0;

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/print.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 138
/* Misc page elements */
div.spacer { clear: both; }

/* Accessibility tweaks: Mozilla.org */
.skip_link { display: none; }

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

dl.codebox dt { display: none; }
#
#-----[ OPEN ]--------------------------------------------- 
#
styles/prosilver/theme/theme.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 19
#

# General Information about this theme
name = prosilver
copyright = &copy; phpBB Group, 2007

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

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

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