diff options
Diffstat (limited to 'phpBB/styles')
40 files changed, 143 insertions, 218 deletions
diff --git a/phpBB/styles/prosilver/imageset/imageset.cfg b/phpBB/styles/prosilver/imageset/imageset.cfg index 72252079d6..5a703d9e47 100644 --- a/phpBB/styles/prosilver/imageset/imageset.cfg +++ b/phpBB/styles/prosilver/imageset/imageset.cfg @@ -19,7 +19,7 @@  # General Information about this style  name = prosilver  copyright = © phpBB Group, 2007 -version = 3.0.9 +version = 3.0.10  # Images  img_site_logo = site_logo.gif*52*139 diff --git a/phpBB/styles/prosilver/style.cfg b/phpBB/styles/prosilver/style.cfg index 83e762f65b..95d8d287e4 100644 --- a/phpBB/styles/prosilver/style.cfg +++ b/phpBB/styles/prosilver/style.cfg @@ -19,4 +19,4 @@  # General Information about this style  name = prosilver  copyright = © phpBB Group, 2007 -version = 3.0.9
\ No newline at end of file +version = 3.0.10
\ No newline at end of file diff --git a/phpBB/styles/prosilver/template/editor.js b/phpBB/styles/prosilver/template/editor.js index ddc862bb8c..cfdb54f54b 100644 --- a/phpBB/styles/prosilver/template/editor.js +++ b/phpBB/styles/prosilver/template/editor.js @@ -151,8 +151,10 @@ function insert_text(text, spaces, popup)  	{  		text = ' ' + text + ' ';  	} -	 -	if (!isNaN(textarea.selectionStart)) + +	// Since IE9, IE also has textarea.selectionStart, but it still needs to be treated the old way. +	// Therefore we simply add a !is_ie here until IE fixes the text-selection completely. +	if (!isNaN(textarea.selectionStart) && !is_ie)  	{  		var sel_start = textarea.selectionStart;  		var sel_end = textarea.selectionEnd; @@ -216,11 +218,12 @@ function addquote(post_id, username, l_wrote)  	}  	// Get text selection - not only the post content :( -	if (window.getSelection) +	// IE9 must use the document.selection method but has the *.getSelection so we just force no IE +	if (window.getSelection && !is_ie)  	{  		theSelection = window.getSelection().toString();  	} -	else if (document.getSelection) +	else if (document.getSelection && !is_ie)  	{  		theSelection = document.getSelection();  	} diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js index 4a85858df5..240fe7e51d 100644 --- a/phpBB/styles/prosilver/template/forum_fn.js +++ b/phpBB/styles/prosilver/template/forum_fn.js @@ -200,7 +200,7 @@ function selectCode(a)  	// Get ID of code block  	var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0]; -	// Not IE +	// Not IE and IE9+  	if (window.getSelection)  	{  		var s = window.getSelection(); diff --git a/phpBB/styles/prosilver/template/jumpbox.html b/phpBB/styles/prosilver/template/jumpbox.html index f7b4fca609..1029627561 100644 --- a/phpBB/styles/prosilver/template/jumpbox.html +++ b/phpBB/styles/prosilver/template/jumpbox.html @@ -10,7 +10,7 @@  <!-- ENDIF -->  <!-- IF S_DISPLAY_JUMPBOX --> -	<form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(document.jumpbox.f.value == -1){return false;}"> +	<form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(this.f.value == -1){return false;}">  	<!-- IF $CUSTOM_FIELDSET_CLASS -->  		<fieldset class="{$CUSTOM_FIELDSET_CLASS}"> diff --git a/phpBB/styles/prosilver/template/mcp_approve.html b/phpBB/styles/prosilver/template/mcp_approve.html index 329205e2a2..185dd49c1b 100644 --- a/phpBB/styles/prosilver/template/mcp_approve.html +++ b/phpBB/styles/prosilver/template/mcp_approve.html @@ -8,7 +8,7 @@  	<div class="content">  		<h2>{MESSAGE_TITLE}</h2> -		<!-- IF ADDITIONAL_MSG --><p>{ADDITIONAL_MSG}</p><!-- ENDIF --> +		<!-- IF ADDITIONAL_MSG --><p class="error">{ADDITIONAL_MSG}</p><!-- ENDIF -->  		<fieldset>  		<!-- IF S_NOTIFY_POSTER --> diff --git a/phpBB/styles/prosilver/template/mcp_front.html b/phpBB/styles/prosilver/template/mcp_front.html index 0891948fb6..b71d120ed6 100644 --- a/phpBB/styles/prosilver/template/mcp_front.html +++ b/phpBB/styles/prosilver/template/mcp_front.html @@ -28,7 +28,6 @@  				<dl>  					<dt>  						<a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> {unapproved.ATTACH_ICON_IMG}<br /> -						<!-- IF report.PAGINATION --><strong class="pagination"><span>{report.PAGINATION}</span></strong><!-- ENDIF -->  						{L_POSTED} {L_POST_BY_AUTHOR} {unapproved.AUTHOR_FULL} » {unapproved.POST_TIME}  					</dt>  					<dd class="moderation"><span> diff --git a/phpBB/styles/prosilver/template/mcp_notes_user.html b/phpBB/styles/prosilver/template/mcp_notes_user.html index c7c089ecad..7e92445476 100644 --- a/phpBB/styles/prosilver/template/mcp_notes_user.html +++ b/phpBB/styles/prosilver/template/mcp_notes_user.html @@ -78,7 +78,7 @@  		<td style="text-align: center">{usernotes.REPORT_AT}</td>  		<td>{usernotes.ACTION}</td> -		<!-- IF S_CLEAR_ALLOWED --><td width="5%" align="center"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF --> +		<!-- IF S_CLEAR_ALLOWED --><td style="width: 5%; text-align: center;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->  	</tr>  	<!-- BEGINELSE -->  	<tr> diff --git a/phpBB/styles/prosilver/template/mcp_post.html b/phpBB/styles/prosilver/template/mcp_post.html index 9d4997e576..f8403ffccd 100644 --- a/phpBB/styles/prosilver/template/mcp_post.html +++ b/phpBB/styles/prosilver/template/mcp_post.html @@ -74,6 +74,7 @@  			<p class="rules">  				<input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" />    				<input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" /> +				<!-- IF not S_FIRST_POST --><input type="hidden" name="mode" value="unapproved_posts" /><!-- ENDIF -->  				<input type="hidden" name="post_id_list[]" value="{POST_ID}" />  				{S_FORM_TOKEN}  			</p> diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index 197cbd4a0c..9e6f8c3aab 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -34,34 +34,11 @@  				<li>  				<!-- IF U_FIND_MEMBER and not S_SEARCH_USER --><a href="{U_FIND_MEMBER}">{L_FIND_USERNAME}</a> • <!-- ELSEIF S_SEARCH_USER and U_HIDE_FIND_MEMBER and not S_IN_SEARCH_POPUP --><a href="{U_HIDE_FIND_MEMBER}">{L_HIDE_MEMBER_SEARCH}</a> • <!-- ENDIF --> -				<strong style="font-size: 0.95em;"><a href="{S_MODE_ACTION}&first_char=">{L_ALL}</a>   -				<a href="{S_MODE_ACTION}&first_char=a#memberlist">A</a>   -				<a href="{S_MODE_ACTION}&first_char=b#memberlist">B</a>   -				<a href="{S_MODE_ACTION}&first_char=c#memberlist">C</a>   -				<a href="{S_MODE_ACTION}&first_char=d#memberlist">D</a>   -				<a href="{S_MODE_ACTION}&first_char=e#memberlist">E</a>   -				<a href="{S_MODE_ACTION}&first_char=f#memberlist">F</a>   -				<a href="{S_MODE_ACTION}&first_char=g#memberlist">G</a>   -				<a href="{S_MODE_ACTION}&first_char=h#memberlist">H</a>   -				<a href="{S_MODE_ACTION}&first_char=i#memberlist">I</a>   -				<a href="{S_MODE_ACTION}&first_char=j#memberlist">J</a>   -				<a href="{S_MODE_ACTION}&first_char=k#memberlist">K</a>   -				<a href="{S_MODE_ACTION}&first_char=l#memberlist">L</a>   -				<a href="{S_MODE_ACTION}&first_char=m#memberlist">M</a>   -				<a href="{S_MODE_ACTION}&first_char=n#memberlist">N</a>   -				<a href="{S_MODE_ACTION}&first_char=o#memberlist">O</a>   -				<a href="{S_MODE_ACTION}&first_char=p#memberlist">P</a>   -				<a href="{S_MODE_ACTION}&first_char=q#memberlist">Q</a>   -				<a href="{S_MODE_ACTION}&first_char=r#memberlist">R</a>   -				<a href="{S_MODE_ACTION}&first_char=s#memberlist">S</a>   -				<a href="{S_MODE_ACTION}&first_char=t#memberlist">T</a>   -				<a href="{S_MODE_ACTION}&first_char=u#memberlist">U</a>   -				<a href="{S_MODE_ACTION}&first_char=v#memberlist">V</a>   -				<a href="{S_MODE_ACTION}&first_char=w#memberlist">W</a>   -				<a href="{S_MODE_ACTION}&first_char=x#memberlist">X</a>   -				<a href="{S_MODE_ACTION}&first_char=y#memberlist">Y</a>   -				<a href="{S_MODE_ACTION}&first_char=z#memberlist">Z</a>   -				<a href="{S_MODE_ACTION}&first_char=other">#</a></strong> +				<strong style="font-size: 0.95em;"> +				<!-- BEGIN first_char --> +					<a href="{first_char.U_SORT}">{first_char.DESC}</a>   +				<!-- END first_char --> +				</strong>  				</li>  				<li class="rightside pagination">  					{TOTAL_USERS} •  diff --git a/phpBB/styles/prosilver/template/memberlist_view.html b/phpBB/styles/prosilver/template/memberlist_view.html index 031bfec6ff..cfec07cff0 100644 --- a/phpBB/styles/prosilver/template/memberlist_view.html +++ b/phpBB/styles/prosilver/template/memberlist_view.html @@ -28,7 +28,7 @@  		<!-- ENDIF -->  		<!-- IF S_USER_INACTIVE --><dt>{L_USER_IS_INACTIVE}:</dt> <dd>{USER_INACTIVE_REASON}</dd><!-- ENDIF -->  		<!-- IF LOCATION --><dt>{L_LOCATION}:</dt> <dd>{LOCATION}</dd><!-- ENDIF --> -		<!-- IF AGE --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF --> +		<!-- IF AGE !== '' --><dt>{L_AGE}:</dt> <dd>{AGE}</dd><!-- ENDIF -->  		<!-- IF OCCUPATION --><dt>{L_OCCUPATION}:</dt> <dd>{OCCUPATION}</dd><!-- ENDIF -->  		<!-- IF INTERESTS --><dt>{L_INTERESTS}:</dt> <dd>{INTERESTS}</dd><!-- ENDIF -->  		<!-- IF S_GROUP_OPTIONS --><dt>{L_USERGROUPS}:</dt> <dd><select name="g">{S_GROUP_OPTIONS}</select> <input type="submit" name="submit" value="{L_GO}" class="button2" /></dd><!-- ENDIF --> @@ -89,8 +89,8 @@  					<!-- IF POSTS_IN_QUEUE and U_MCP_QUEUE --><br />(<a href="{U_MCP_QUEUE}">{L_POSTS_IN_QUEUE}</a>)<!-- ELSEIF POSTS_IN_QUEUE --><br />({L_POSTS_IN_QUEUE})<!-- ENDIF -->  				</dd>  			<!-- IF S_SHOW_ACTIVITY and POSTS --> -				<dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd> -				<dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd> +				<dt>{L_ACTIVE_IN_FORUM}:</dt> <dd><!-- IF ACTIVE_FORUM != '' --><strong><a href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></strong><br />({ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT})<!-- ELSE --> - <!-- ENDIF --></dd> +				<dt>{L_ACTIVE_IN_TOPIC}:</dt> <dd><!-- IF ACTIVE_TOPIC != '' --><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})<!-- ELSE --> - <!-- ENDIF --></dd>  			<!-- ENDIF -->  		</dl>  	</div> diff --git a/phpBB/styles/prosilver/template/message_body.html b/phpBB/styles/prosilver/template/message_body.html index 896f0b826e..3a970769b7 100644 --- a/phpBB/styles/prosilver/template/message_body.html +++ b/phpBB/styles/prosilver/template/message_body.html @@ -1,4 +1,8 @@ -<!-- INCLUDE overall_header.html --> +<!-- IF S_SIMPLE_MESSAGE --> +	<!-- INCLUDE simple_header.html --> +<!-- ELSE --> +	<!-- INCLUDE overall_header.html --> +<!-- ENDIF -->  <div class="panel" id="message">  	<div class="inner"><span class="corners-top"><span></span></span> @@ -8,4 +12,8 @@  	<span class="corners-bottom"><span></span></span></div>  </div> -<!-- INCLUDE overall_footer.html -->
\ No newline at end of file +<!-- IF S_SIMPLE_MESSAGE --> +	<!-- INCLUDE simple_footer.html --> +<!-- ELSE --> +	<!-- INCLUDE overall_footer.html --> +<!-- ENDIF --> diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index e13c49b59a..a46c161542 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -68,7 +68,7 @@  		{  			eval(onload_functions[i]);  		} -	} +	};  	window.onunload = function()  	{ @@ -76,7 +76,7 @@  		{  			eval(onunload_functions[i]);  		} -	} +	};  // ]]>  </script> diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html index 19d55d1a4a..78c2a0d9f2 100644 --- a/phpBB/styles/prosilver/template/posting_buttons.html +++ b/phpBB/styles/prosilver/template/posting_buttons.html @@ -25,7 +25,7 @@  		a: '{LA_BBCODE_A_HELP}',  		s: '{LA_BBCODE_S_HELP}',  		f: '{LA_BBCODE_F_HELP}', -		e: '{LA_BBCODE_E_HELP}', +		y: '{LA_BBCODE_Y_HELP}',  		d: '{LA_BBCODE_D_HELP}'  		<!-- BEGIN custom_tags -->  			,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}' @@ -79,7 +79,7 @@  	<input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" title="{L_BBCODE_C_HELP}" />  	<input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" title="{L_BBCODE_L_HELP}" />  	<input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" title="{L_BBCODE_O_HELP}" /> -	<input type="button" class="button2" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" /> +	<input type="button" class="button2" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" title="{L_BBCODE_LISTITEM_HELP}" />  	<!-- IF S_BBCODE_IMG -->  		<input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" title="{L_BBCODE_P_HELP}" />  	<!-- ENDIF --> diff --git a/phpBB/styles/prosilver/template/template.cfg b/phpBB/styles/prosilver/template/template.cfg index 42383a022f..d31dcb7356 100644 --- a/phpBB/styles/prosilver/template/template.cfg +++ b/phpBB/styles/prosilver/template/template.cfg @@ -19,7 +19,7 @@  # General Information about this template  name = prosilver  copyright = © phpBB Group, 2007 -version = 3.0.9 +version = 3.0.10  # Defining a different template bitfield  template_bitfield = lNg= diff --git a/phpBB/styles/prosilver/template/ucp_groups_manage.html b/phpBB/styles/prosilver/template/ucp_groups_manage.html index bce31431cb..87b548c23b 100644 --- a/phpBB/styles/prosilver/template/ucp_groups_manage.html +++ b/phpBB/styles/prosilver/template/ucp_groups_manage.html @@ -143,8 +143,15 @@  			</tr>  		<!-- ENDIF -->  	<!-- BEGINELSE --> +		<table class="table1" cellspacing="1"> +		<thead>  		<tr> -			<td class="bg1" colspan="5">{L_GROUPS_NO_MEMBERS}</td> +			<th class="name">{L_MEMBERS}</th> +		</tr> +		</thead> +		<tbody> +		<tr> +			<td class="bg1">{L_GROUPS_NO_MEMBERS}</td>  		</tr>  	<!-- END member -->  	</tbody> diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html index b1a93296bd..ce2a376768 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html +++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html @@ -1,120 +1,57 @@  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">  <head> +  <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />  <meta http-equiv="content-style-type" content="text/css" />  <meta http-equiv="content-language" content="{S_USER_LANG}" /> -<title>{SITENAME} :: {PAGE_TITLE}</title> - -<style type="text/css"> -/* <![CDATA[ */ -body { -	font-family: Verdana,serif; -	font-size: 10pt; -} - -td { -	font-family: Verdana,serif; -	font-size: 10pt; -	line-height: 150%; -} - -.code, .quote { -	font-size: smaller; -	border: black solid 1px; -} - -.forum { -	font-family: Arial,Helvetica,sans-serif; -	font-weight: bold; -	font-size: 18pt; -} - -.topic { -	font-family: Arial,Helvetica,sans-serif; -	font-size: 14pt; -	font-weight: bold; -} - -.gensmall { -	font-size: 8pt; -} - -hr { -	color: #888888; -	height: 3px; -	border-style: solid; -} - -hr.sep	{ -	color: #AAAAAA; -	height: 1px; -	border-style: dashed; -} -/* ]]> */ -</style> - +<meta http-equiv="imagetoolbar" content="no" /> +<meta name="resource-type" content="document" /> +<meta name="distribution" content="global" /> +<meta name="keywords" content="" /> +<meta name="description" content="" /> +<meta name="robots" content="noindex" /> +{META} +<title>{SITENAME} • {PAGE_TITLE}</title> + +<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" />  </head> -<body> - -<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center"> -<tr> -	<td colspan="2" align="center"><span class="forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</a></span></td> -</tr> -<tr> -	<td colspan="2"><br /></td> -</tr> -<tr> -	<td><span class="topic">{SUBJECT}</span><br /></td> -	<td align="right" valign="bottom"><span class="gensmall">{PAGE_NUMBER}</span></td> -</tr> -</table> - -<hr width="85%" /> - -<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center"> -<tr> -	<td width="10%" nowrap="nowrap">{L_PM_FROM}: </td> -	<td><strong>{MESSAGE_AUTHOR}</strong> [ {SENT_DATE} ]</td> -</tr> - -<!-- IF S_TO_RECIPIENT --> -	<tr> -		<td width="10%" nowrap="nowrap">{L_TO}:</td> -		<td> -		<!-- BEGIN to_recipient --> -			<span<!-- IF to_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->>{to_recipient.NAME}</span>  -		<!-- END to_recipient --> -		</td> -	</tr> -<!-- ENDIF --> - -<!-- IF S_BCC_RECIPIENT --> -	<tr> -		<td width="10%" nowrap="nowrap">{L_BCC}:</td> -		<td> -		<!-- BEGIN bcc_recipient --> -			<!-- IF bcc_recipient.COLOUR --><span style="color:{bcc_recipient.COLOUR}"><!-- ELSE --><span<!-- IF bcc_recipient.IS_GROUP --> class="sep"<!-- ENDIF -->><!-- ENDIF -->{bcc_recipient.NAME}</span>  -		<!-- END bcc_recipient --> -		</td> -	</tr> -<!-- ENDIF --> -<tr> -	<td colspan="2"><hr class="sep" />{MESSAGE}</td> -</tr> -</table> - -<hr width="85%" /> -<table width="85%" cellspacing="3" cellpadding="0" border="0" align="center"> -<tr> -	<td><span class="gensmall">{PAGE_NUMBER}</span></td> -	<td align="{S_CONTENT_FLOW_END}"><span class="gensmall">{S_TIMEZONE}</span></td> -</tr> -<tr> -	<td colspan="2" align="center"><span class="gensmall">Powered by phpBB® Forum Software © phpBB Group<br />http://www.phpbb.com/</span></td> -</tr> -</table> +<body id="phpbb"> +<div id="wrap"> +	<a id="top" name="top" accesskey="t"></a> + +	<div id="page-header"> +		<h1>{SITENAME}</h1> +		<p>{SITE_DESCRIPTION}<br /><a href="{U_FORUM}">{U_FORUM}</a></p> + +		<h2>{TOPIC_TITLE}</h2> +		<p><a href="{U_TOPIC}">{U_TOPIC}</a></p> +	</div> + +	<div id="page-body"> +		<div class="page-number">{PAGE_NUMBER}</div> +			<div class="post"> +				<h3>{SUBJECT}</h3> +				<div class="date">{L_SENT_AT} <strong>{SENT_DATE}</strong></div> +				<div class="author">{L_PM_FROM} <strong>{MESSAGE_AUTHOR}</strong></div> +				<!-- IF S_TO_RECIPIENT --> +					<div class="author">{L_TO} <strong><!-- BEGIN to_recipient -->{to_recipient.NAME} <!-- END to_recipient --></strong></div> +				<!-- ENDIF --> +				<!-- IF S_BCC_RECIPIENT --> +					<div class="author">{L_BCC} <strong><!-- BEGIN bcc_recipient -->{bcc_recipient.NAME} <!-- END bcc_recipient --></strong></div> +				<!-- ENDIF --> +				<hr /> +				<div class="content">{MESSAGE}</div> +			</div> +			<hr /> +	</div> + +	<div id="page-footer"> +		<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div> +		<div class="copyright">Powered by phpBB® Forum Software © phpBB Group<br />http://www.phpbb.com/</div> +	</div> +</div>  </body>  </html>
\ No newline at end of file diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 32292f89ef..57de96d853 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -4,13 +4,10 @@  <!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body -->  <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF --> -<!-- IF MODERATORS or U_MCP --> -	<p> -		<!-- IF MODERATORS --> -			<strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS} -		<!-- ENDIF --> - -	</p> +<!-- IF MODERATORS --> +<p> +	<strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS} +</p>  <!-- ENDIF -->  <!-- IF S_FORUM_RULES --> diff --git a/phpBB/styles/prosilver/theme/bidi.css b/phpBB/styles/prosilver/theme/bidi.css index f441784d85..d1cff9c8be 100644 --- a/phpBB/styles/prosilver/theme/bidi.css +++ b/phpBB/styles/prosilver/theme/bidi.css @@ -1,4 +1,4 @@ -/* proSilver RTL definitions +/* RTL definitions  ---------------------------------------- */  /** @@ -519,7 +519,7 @@  /**  * cp.css  */ -/* proSilver Control Panel Styles +/* Control Panel Styles  ---------------------------------------- */ diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index 6cffdc5930..a9ded9cf98 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -1,4 +1,4 @@ -/* proSilver Button Styles +/* Button Styles  ---------------------------------------- */  /* Rollover buttons diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index a86f723f81..8b5e09297e 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1,4 +1,4 @@ -/* General proSilver Markup Styles +/* General Markup Styles  ---------------------------------------- */  * { diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css index 64beb97a37..5f627c8f77 100644 --- a/phpBB/styles/prosilver/theme/content.css +++ b/phpBB/styles/prosilver/theme/content.css @@ -1,4 +1,4 @@ -/* proSilver Content Styles +/* Content Styles  ---------------------------------------- */  ul.topiclist { diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css index b574b0ae1f..708bfbaf83 100644 --- a/phpBB/styles/prosilver/theme/cp.css +++ b/phpBB/styles/prosilver/theme/cp.css @@ -1,4 +1,4 @@ -/* proSilver Control Panel Styles +/* Control Panel Styles  ---------------------------------------- */ diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index 803c608bcf..43888733cc 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -1,4 +1,4 @@ -/* proSilver Form Styles +/* Form Styles  ---------------------------------------- */  /* General form styles @@ -26,6 +26,7 @@ select {  	border: 1px solid #666666;  	padding: 1px;  	background-color: #FAFAFA; +	font-size: 1em;  }  option { diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 1f6c2af550..05662b9b44 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -1,4 +1,4 @@ -/* proSilver Link Styles +/* Link Styles  ---------------------------------------- */  /* Links adjustment to correctly display an order of rtl/ltr mixed content */ diff --git a/phpBB/styles/prosilver/theme/print.css b/phpBB/styles/prosilver/theme/print.css index 2cfcd4da20..bc3ca80fdc 100644 --- a/phpBB/styles/prosilver/theme/print.css +++ b/phpBB/styles/prosilver/theme/print.css @@ -1,10 +1,5 @@ -/* proSilver Print Style Sheet -------------------------------------------------- -	Author: subBlue  ( http://www.subBlue.com/ ) -	Version: 25 August 2004 - -	Copyright 2004 phpBB Group --------------------------------------------------*/ +/* Print Style Sheet +---------------------------------------- */  /* Lots still TODO here! */ diff --git a/phpBB/styles/prosilver/theme/stylesheet.css b/phpBB/styles/prosilver/theme/stylesheet.css index c7db605bbb..4a7356fbaa 100644 --- a/phpBB/styles/prosilver/theme/stylesheet.css +++ b/phpBB/styles/prosilver/theme/stylesheet.css @@ -1,11 +1,9 @@ -/*  phpBB 3.0 Style Sheet +/*  phpBB3 Style Sheet      -------------------------------------------------------------- -	Style name:		proSilver -	Based on style:	proSilver (this is the default phpBB 3 style) -	Original author:	subBlue ( http://www.subBlue.com/ ) -	Modified by:		 -	 -	Copyright 2006 phpBB Group ( http://www.phpbb.com/ ) +	Style name:			prosilver (the default phpBB 3.0.x style) +	Based on style:		 +	Original author:	Tom Beddard ( http://www.subblue.com/ ) +	Modified by:		phpBB Group ( http://www.phpbb.com/ )      --------------------------------------------------------------  */ diff --git a/phpBB/styles/prosilver/theme/theme.cfg b/phpBB/styles/prosilver/theme/theme.cfg index 4270094eab..e8698f7fe4 100644 --- a/phpBB/styles/prosilver/theme/theme.cfg +++ b/phpBB/styles/prosilver/theme/theme.cfg @@ -21,7 +21,7 @@  # General Information about this theme  name = prosilver  copyright = © phpBB Group, 2007 -version = 3.0.9 +version = 3.0.10  # Some configuration options diff --git a/phpBB/styles/prosilver/theme/tweaks.css b/phpBB/styles/prosilver/theme/tweaks.css index 30fe5fb986..f7322c2cce 100644 --- a/phpBB/styles/prosilver/theme/tweaks.css +++ b/phpBB/styles/prosilver/theme/tweaks.css @@ -1,4 +1,4 @@ -/* proSilver Style Sheet Tweaks +/* Style Sheet Tweaks  These style definitions are mainly IE specific   tweaks required due to its poor CSS support. diff --git a/phpBB/styles/subsilver2/imageset/imageset.cfg b/phpBB/styles/subsilver2/imageset/imageset.cfg index d8cfabcb02..75a4aad038 100644 --- a/phpBB/styles/subsilver2/imageset/imageset.cfg +++ b/phpBB/styles/subsilver2/imageset/imageset.cfg @@ -19,7 +19,7 @@  # General Information about this style  name = subsilver2  copyright = © phpBB Group, 2003 -version = 3.0.9 +version = 3.0.10  # Images  img_site_logo = site_logo.gif*94*170 diff --git a/phpBB/styles/subsilver2/style.cfg b/phpBB/styles/subsilver2/style.cfg index 0cdb7204bb..13e44435c6 100644 --- a/phpBB/styles/subsilver2/style.cfg +++ b/phpBB/styles/subsilver2/style.cfg @@ -19,4 +19,4 @@  # General Information about this style  name = subsilver2  copyright = © 2005 phpBB Group -version = 3.0.9 +version = 3.0.10 diff --git a/phpBB/styles/subsilver2/template/attachment.html b/phpBB/styles/subsilver2/template/attachment.html index b5b547b2e6..fca620b481 100644 --- a/phpBB/styles/subsilver2/template/attachment.html +++ b/phpBB/styles/subsilver2/template/attachment.html @@ -72,7 +72,7 @@  				<param name="controller" value="true">  				<param name="autoplay" value="false" />  				<param name="type" value="video/quicktime"> -				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="320" height="285" type="video/quicktime" autoplay="false">  +				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="320" height="285" type="video/quicktime" autoplay="false"></embed>  			</object>  		<!-- ELSEIF _file.S_RM_FILE -->  			<object id="rmstream_{_file.ATTACH_ID}" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" width="200" height="50"> diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js index cd22812bab..7cc5de9034 100644 --- a/phpBB/styles/subsilver2/template/editor.js +++ b/phpBB/styles/subsilver2/template/editor.js @@ -151,8 +151,10 @@ function insert_text(text, spaces, popup)  	{  		text = ' ' + text + ' ';  	} -	 -	if (!isNaN(textarea.selectionStart)) + +	// Since IE9, IE also has textarea.selectionStart, but it still needs to be treated the old way. +	// Therefore we simply add a !is_ie here until IE fixes the text-selection completely. +	if (!isNaN(textarea.selectionStart) && !is_ie)  	{  		var sel_start = textarea.selectionStart;  		var sel_end = textarea.selectionEnd; @@ -218,11 +220,12 @@ function addquote(post_id, username, l_wrote)  	}  	// Get text selection - not only the post content :( -	if (window.getSelection) +	// IE9 must use the document.selection method but has the *.getSelection so we just force no IE +	if (window.getSelection && !is_ie)  	{  		theSelection = window.getSelection().toString();  	} -	else if (document.getSelection) +	else if (document.getSelection && !is_ie)  	{  		theSelection = document.getSelection();  	} diff --git a/phpBB/styles/subsilver2/template/memberlist_body.html b/phpBB/styles/subsilver2/template/memberlist_body.html index cb7a7b20c7..800162b7b0 100644 --- a/phpBB/styles/subsilver2/template/memberlist_body.html +++ b/phpBB/styles/subsilver2/template/memberlist_body.html @@ -14,7 +14,12 @@  	<form method="post" name="charsearch" action="{S_MODE_ACTION}">  		<table width="100%" cellspacing="1">  		<tr> -			<td align="{S_CONTENT_FLOW_BEGIN}"><span class="genmed">{L_USERNAME_BEGINS_WITH}: </span><select name="first_char" onchange="this.form.submit();">{S_CHAR_OPTIONS}</select> <input type="submit" name="char" value="{L_DISPLAY}" class="btnlite" /></td> +			<td align="{S_CONTENT_FLOW_BEGIN}"><span class="genmed">{L_USERNAME_BEGINS_WITH}: </span> +				<select name="first_char" onchange="this.form.submit();"> +					<!-- BEGIN first_char --> +						<option value="{first_char.VALUE}"<!-- IF first_char.S_SELECTED --> selected="selected"<!-- ENDIF -->>{first_char.DESC}</option> +					<!-- END first_char --> +				</select> <input type="submit" name="char" value="{L_DISPLAY}" class="btnlite" /></td>  	<!-- IF U_FIND_MEMBER and not S_SEARCH_USER -->  			<td class="genmed" align="{S_CONTENT_FLOW_END}"><a href="{U_FIND_MEMBER}">{L_FIND_USERNAME}</a></td>  	<!-- ELSEIF S_SEARCH_USER and U_HIDE_FIND_MEMBER and not S_IN_SEARCH_POPUP --> diff --git a/phpBB/styles/subsilver2/template/memberlist_view.html b/phpBB/styles/subsilver2/template/memberlist_view.html index 9ef2b85878..434d795895 100644 --- a/phpBB/styles/subsilver2/template/memberlist_view.html +++ b/phpBB/styles/subsilver2/template/memberlist_view.html @@ -89,11 +89,11 @@  			<!-- IF S_SHOW_ACTIVITY -->  				<tr>  					<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_FORUM}: </td> -					<td><!-- IF ACTIVE_FORUM --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td> +					<td><!-- IF ACTIVE_FORUM != '' --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>  				</tr>  				<tr>  					<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_TOPIC}: </td> -					<td><!-- IF ACTIVE_TOPIC --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td> +					<td><!-- IF ACTIVE_TOPIC != '' --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>  				</tr>  			<!-- ENDIF -->  			</table> @@ -148,10 +148,10 @@  				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_LOCATION}: </td>  				<td><!-- IF LOCATION --><b class="genmed">{LOCATION}</b><!-- ENDIF --></td>  			</tr> -			<!-- IF AGE --> +			<!-- IF AGE !== '' -->  			<tr>  				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_AGE}: </td> -				<td><b class="genmed"><!-- IF AGE -->{AGE}<!-- ELSE --> - <!-- ENDIF --></b></td> +				<td><b class="genmed">{AGE}</b></td>  			</tr>  			<!-- ENDIF -->  			<tr> diff --git a/phpBB/styles/subsilver2/template/posting_buttons.html b/phpBB/styles/subsilver2/template/posting_buttons.html index 92b4bd3e39..a9105b5eec 100644 --- a/phpBB/styles/subsilver2/template/posting_buttons.html +++ b/phpBB/styles/subsilver2/template/posting_buttons.html @@ -22,9 +22,8 @@  			a: '{LA_BBCODE_A_HELP}',  			s: '{LA_BBCODE_S_HELP}',  			f: '{LA_BBCODE_F_HELP}', -			e: '{LA_BBCODE_E_HELP}', +			y: '{LA_BBCODE_Y_HELP}',  			d: '{LA_BBCODE_D_HELP}', -			t: '{LA_BBCODE_T_HELP}',  			tip: '{L_STYLES_TIP}'  			<!-- BEGIN custom_tags -->  				,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}' @@ -45,7 +44,7 @@  		<input type="button" class="btnbbcode" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" onmouseover="helpline('c')" onmouseout="helpline('tip')" />  		<input type="button" class="btnbbcode" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" onmouseover="helpline('l')" onmouseout="helpline('tip')" />  		<input type="button" class="btnbbcode" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" onmouseover="helpline('o')" onmouseout="helpline('tip')" /> -		<input type="button" class="btnbbcode" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('e')" onmouseout="helpline('tip')" />				 +		<input type="button" class="btnbbcode" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('e')" onmouseout="helpline('tip')" />				  		<!-- IF S_BBCODE_IMG -->  			<input type="button" class="btnbbcode" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" onmouseover="helpline('p')" onmouseout="helpline('tip')" />  		<!-- ENDIF --> diff --git a/phpBB/styles/subsilver2/template/template.cfg b/phpBB/styles/subsilver2/template/template.cfg index 92ccfef35a..4e5c36af99 100644 --- a/phpBB/styles/subsilver2/template/template.cfg +++ b/phpBB/styles/subsilver2/template/template.cfg @@ -19,5 +19,5 @@  # General Information about this template  name = subsilver2  copyright = © phpBB Group, 2003 -version = 3.0.9 +version = 3.0.10 diff --git a/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html b/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html index 6753a5bc33..24194e4c26 100644 --- a/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html +++ b/phpBB/styles/subsilver2/template/ucp_pm_viewmessage_print.html @@ -61,7 +61,7 @@ hr.sep {  <table width="85%" cellspacing="3" cellpadding="0" border="0" align="center">  <tr> -	<td colspan="2" align="center"><span class="Forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</a></span></td> +	<td colspan="2" align="center"><span class="Forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</span></td>  </tr>  <tr>  	<td colspan="2"><br /></td> diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index c2b6718d87..444104ae3c 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -1,14 +1,9 @@ -/*  phpBB 3.0 Style Sheet +/*  phpBB3 Style Sheet      -------------------------------------------------------------- -	Style name:		subsilver2 -	Based on style:	subSilver (the default phpBB 2 style) -	Original author:	subBlue ( http://www.subBlue.com/ ) -	Modified by:		psoTFX and the phpBB team ( http://www.phpbb.com ) -	 -	This is an alternative style for phpBB3 for those wishing to stay with -	the familiar subSilver style of phpBB version 2.x -	 -	Copyright 2006 phpBB Group ( http://www.phpbb.com/ ) +	Style name:			subsilver2 +	Based on style:		subSilver (the default phpBB 2.0.x style) +	Original author:	Tom Beddard ( http://www.subblue.com/ ) +	Modified by:		phpBB Group ( http://www.phpbb.com/ )      --------------------------------------------------------------  */ diff --git a/phpBB/styles/subsilver2/theme/theme.cfg b/phpBB/styles/subsilver2/theme/theme.cfg index 94e2f6d53d..d7837a3766 100644 --- a/phpBB/styles/subsilver2/theme/theme.cfg +++ b/phpBB/styles/subsilver2/theme/theme.cfg @@ -21,7 +21,7 @@  # General Information about this theme  name = subsilver2  copyright = © phpBB Group, 2003 -version = 3.0.9 +version = 3.0.10  # Some configuration options  | 
