+ {USERNAME} {L_WROTE}:
+
+
+
+
+
+ {L_QUOTE}:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {L_CODE}:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{TEXT}
+
+{TEXT}
+
+
+
+{DESCRIPTION}
+
+{DESCRIPTION}
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/confirm_body.html b/phpBB/styles/subSilver/template/confirm_body.html
new file mode 100644
index 0000000000..0f6b1f6042
--- /dev/null
+++ b/phpBB/styles/subSilver/template/confirm_body.html
@@ -0,0 +1,18 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/editor.js b/phpBB/styles/subSilver/template/editor.js
new file mode 100644
index 0000000000..dfe9e4c9d5
--- /dev/null
+++ b/phpBB/styles/subSilver/template/editor.js
@@ -0,0 +1,253 @@
+// bbCode control by subBlue design [ www.subBlue.com ]
+// Includes unixsafe colour palette selector by SHS`
+
+// Startup variables
+var imageTag = false;
+var theSelection = false;
+
+// Check for Browser & Platform for PC & IE specific bits
+// More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
+var clientPC = navigator.userAgent.toLowerCase(); // Get client info
+var clientVer = parseInt(navigator.appVersion); // Get browser version
+
+var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1));
+var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1)
+ && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1)
+ && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1));
+
+var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1));
+var is_mac = (clientPC.indexOf("mac")!=-1);
+
+// Shows the help messages in the helpline window
+function helpline(help) {
+ document.forms[form_name].helpbox.value = eval(help + "_help");
+}
+
+// Replacement for arrayname.length property
+function getarraysize(thearray) {
+ for (i = 0; i < thearray.length; i++) {
+ if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null))
+ return i;
+ }
+ return thearray.length;
+}
+
+// Replacement for arrayname.push(value) not implemented in IE until version 5.5
+// Appends element to the array
+function arraypush(thearray,value) {
+ thearray[ getarraysize(thearray) ] = value;
+}
+
+// Replacement for arrayname.pop() not implemented in IE until version 5.5
+// Removes and returns the last element of an array
+function arraypop(thearray) {
+ thearraysize = getarraysize(thearray);
+ retval = thearray[thearraysize - 1];
+ delete thearray[thearraysize - 1];
+ return retval;
+}
+
+function emoticon(text) {
+ text = ' ' + text + ' ';
+ if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) {
+ var caretPos = document.forms[form_name].elements[text_name].caretPos;
+ caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
+ document.forms[form_name].elements[text_name].focus();
+ } else {
+ document.forms[form_name].elements[text_name].value += text;
+ document.forms[form_name].elements[text_name].focus();
+ }
+}
+
+function bbfontstyle(bbopen, bbclose) {
+ if ((clientVer >= 4) && is_ie && is_win) {
+ theSelection = document.selection.createRange().text;
+ if (!theSelection) {
+ insert_text(bbopen + bbclose);
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+ document.selection.createRange().text = bbopen + theSelection + bbclose;
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ } else {
+ insert_text(bbopen + bbclose);
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+ storeCaret(document.forms[form_name].elements[text_name]);
+}
+
+function insert_text(text) {
+ if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) {
+ var caretPos = document.forms[form_name].elements[text_name].caretPos;
+ caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == '' ? text : text;
+ } else {
+ document.forms[form_name].elements[text_name].value += text;
+ }
+}
+
+function bbstyle(bbnumber) {
+
+ donotinsert = false;
+ theSelection = false;
+ bblast = 0;
+ document.forms[form_name].elements[text_name].focus();
+
+ if (bbnumber == -1) { // Close all open tags & default button names
+ while (bbcode[0]) {
+ butnumber = arraypop(bbcode) - 1;
+ document.forms[form_name].elements[text_name].value += bbtags[butnumber + 1];
+ buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value');
+ if (buttext != "[*]")
+ {
+ eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
+ }
+ }
+ document.forms[form_name].addbbcode10.value = "List";
+ bbtags[10] = "[list]";
+ document.forms[form_name].addbbcode12.value = "List=";
+ bbtags[12] = "[list=]";
+ imageTag = false; // All tags are closed including image tags :D
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+
+ if ((clientVer >= 4) && is_ie && is_win)
+ theSelection = document.selection.createRange().text; // Get text selection
+
+ if (theSelection) {
+ // Add tags around selection
+ document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
+ document.forms[form_name].elements[text_name].focus();
+ theSelection = '';
+ return;
+ }
+
+ // Find last occurance of an open tag the same as the one just clicked
+ for (i = 0; i < bbcode.length; i++) {
+ if (bbcode[i] == bbnumber+1) {
+ bblast = i;
+ donotinsert = true;
+ }
+ }
+
+ if ((bbnumber == 10) && (bbtags[10] != "[*]"))
+ {
+ if (donotinsert)
+ {
+ document.forms[form_name].addbbcode12.value = "List=";
+ tmp_help = o_help;
+ o_help = e_help;
+ e_help = tmp_help;
+ bbtags[12] = "[list=]";
+ }
+ else
+ {
+ document.forms[form_name].addbbcode12.value = "[*]";
+ tmp_help = o_help;
+ o_help = e_help;
+ e_help = tmp_help;
+ bbtags[12] = "[*]";
+ }
+ }
+
+ if ((bbnumber == 12) && (bbtags[12] != "[*]"))
+ {
+ if (donotinsert)
+ {
+ document.forms[form_name].addbbcode10.value = "List";
+ tmp_help = l_help;
+ l_help = e_help;
+ e_help = tmp_help;
+ bbtags[10] = "[list]";
+ }
+ else
+ {
+ document.forms[form_name].addbbcode10.value = "[*]";
+ tmp_help = l_help;
+ l_help = e_help;
+ e_help = tmp_help;
+ bbtags[10] = "[*]";
+ }
+ }
+
+ if (donotinsert) { // Close all open tags up to the one just clicked & default button names
+ while (bbcode[bblast]) {
+ butnumber = arraypop(bbcode) - 1;
+ if (bbtags[butnumber] != "[*]")
+ {
+ insert_text(bbtags[butnumber + 1]);
+ }
+ else
+ {
+ insert_text(bbtags[butnumber]);
+ }
+ buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value');
+ if (bbtags[butnumber] != "[*]")
+ {
+ eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
+ }
+ imageTag = false;
+ }
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ } else { // Open tags
+
+ if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
+ insert_text(bbtags[15]);
+
+ lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list
+ document.forms[form_name].addbbcode14.value = "Img"; // Return button back to normal state
+ imageTag = false;
+ }
+
+ // Open tag
+ insert_text(bbtags[bbnumber]);
+
+ if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
+ if (bbtags[bbnumber] != "[*]")
+ {
+ arraypush(bbcode,bbnumber+1);
+ eval('document.forms[form_name].addbbcode'+bbnumber+'.value += "*"');
+ }
+ document.forms[form_name].elements[text_name].focus();
+ return;
+ }
+
+ storeCaret(document.forms[form_name].elements[text_name]);
+}
+
+// Insert at Claret position. Code from
+// http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130
+function storeCaret(textEl) {
+ if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
+}
+
+function colorPalette()
+{
+ var r = 0, g = 0, b = 0;
+ var numberList = new Array(6);
+ numberList[0] = "00";
+ numberList[1] = "40";
+ numberList[2] = "80";
+ numberList[3] = "BF";
+ numberList[4] = "FF";
+ document.writeln('');
+ for(r = 0; r < 5; r++)
+ {
+ for(g = 0; g < 5; g++)
+ {
+ document.writeln('');
+ for(b = 0; b < 5; b++)
+ {
+ color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]);
+ document.write('');
+ document.write(' ');
+ document.writeln(' ');
+ }
+ document.writeln(' ');
+ }
+ }
+ document.writeln('
');
+}
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/faq_body.html b/phpBB/styles/subSilver/template/faq_body.html
new file mode 100644
index 0000000000..7c997e90ca
--- /dev/null
+++ b/phpBB/styles/subSilver/template/faq_body.html
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+ {faq_block.BLOCK_TITLE}
+
+
+
+
+
+
+
+ {faq_block.faq_row.FAQ_QUESTION} {faq_block.faq_row.FAQ_ANSWER}{L_BACK_TO_TOP}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/gcp_body.html b/phpBB/styles/subSilver/template/gcp_body.html
new file mode 100644
index 0000000000..4acf9aaf51
--- /dev/null
+++ b/phpBB/styles/subSilver/template/gcp_body.html
@@ -0,0 +1,128 @@
+
+
+
+
+
+
diff --git a/phpBB/styles/subSilver/template/gcp_pending_info.html b/phpBB/styles/subSilver/template/gcp_pending_info.html
new file mode 100644
index 0000000000..00486901d7
--- /dev/null
+++ b/phpBB/styles/subSilver/template/gcp_pending_info.html
@@ -0,0 +1,36 @@
+
+
+
+
diff --git a/phpBB/styles/subSilver/template/gcp_user_body.html b/phpBB/styles/subSilver/template/gcp_user_body.html
new file mode 100644
index 0000000000..8ab2dce7b2
--- /dev/null
+++ b/phpBB/styles/subSilver/template/gcp_user_body.html
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+ {L_GROUP_MEMBERSHIP_DETAILS}
+
+
+
+ {L_YOU_BELONG_GROUPS}
+
+
+
+
+
+
+
+ {L_PENDING_GROUPS}
+
+
+
+
+
+
+
+
+ {L_JOIN_A_GROUP}
+
+
+ {L_SELECT_A_GROUP}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/phpBB/styles/subSilver/template/index.htm b/phpBB/styles/subSilver/template/index.htm
new file mode 100644
index 0000000000..79908c5993
--- /dev/null
+++ b/phpBB/styles/subSilver/template/index.htm
@@ -0,0 +1,16 @@
+
+
+subSilver created by subBlue Design
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/index_body.html b/phpBB/styles/subSilver/template/index_body.html
new file mode 100644
index 0000000000..90d73fc5bc
--- /dev/null
+++ b/phpBB/styles/subSilver/template/index_body.html
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+ {L_FORUM}
+ {L_TOPICS}
+ {L_POSTS}
+ {L_LAST_POST}
+
+
+
+
+ {forumrow.FORUM_NAME}
+
+
+
+
+ {forumrow.FORUM_FOLDER_IMG}
+ {forumrow.FORUM_NAME}
+
+
+ {forumrow.FORUM_DESC}
+
+
+ {L_REDIRECTS}: {forumrow.CLICKS}
+
+
+
+ {forumrow.FORUM_FOLDER_IMG}
+ {forumrow.FORUM_NAME}
+
+
+ {forumrow.FORUM_DESC}
+
+
{forumrow.L_MODERATOR_STR}: {forumrow.MODERATORS}{forumrow.L_SUBFORUM_STR} {forumrow.SUBFORUMS}
+ {forumrow.TOPICS}
+ {forumrow.POSTS}
+ {forumrow.LAST_POST_TIME}{forumrow.LAST_POSTER} {forumrow.LAST_POSTER} {forumrow.LAST_POST_IMG} {L_NO_POSTS}
+
+
+
+
+ {L_NO_FORUMS}
+
+
+
+
+
+
+
+
+
+
+
+ {L_WHO_IS_ONLINE}
+
+
+
+
+
+
+
+ {TOTAL_USERS_ONLINE} {RECORD_USERS} {LOGGED_IN_USER_LIST} {L_ONLINE_EXPLAIN}
+
+
+
+ {L_LEGEND} :: {LEGEND}
+
+
+
+
+
+
+
+
+
+
+ {L_BIRTHDAYS}
+
+
+
+ {L_CONGRATULATIONS}: {BIRTHDAY_LIST} {L_NO_BIRTHDAYS}
+
+
+
+
+
+
+
+
+
+
+
+
+ {FORUM_NEW_IMG}
+ {L_NEW_POSTS}
+
+ {FORUM_IMG}
+ {L_NO_NEW_POSTS}
+
+ {FORUM_LOCKED_IMG}
+ {L_FORUM_LOCKED}
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/jumpbox.html b/phpBB/styles/subSilver/template/jumpbox.html
new file mode 100644
index 0000000000..9858c7e69d
--- /dev/null
+++ b/phpBB/styles/subSilver/template/jumpbox.html
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/phpBB/styles/subSilver/template/login_body.html b/phpBB/styles/subSilver/template/login_body.html
new file mode 100644
index 0000000000..9a6301d49a
--- /dev/null
+++ b/phpBB/styles/subSilver/template/login_body.html
@@ -0,0 +1,55 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/login_forum.html b/phpBB/styles/subSilver/template/login_forum.html
new file mode 100644
index 0000000000..6d706336ef
--- /dev/null
+++ b/phpBB/styles/subSilver/template/login_forum.html
@@ -0,0 +1,35 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_forum.html b/phpBB/styles/subSilver/template/mcp_forum.html
new file mode 100644
index 0000000000..e2ad68c00f
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_forum.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_foruminfo.html b/phpBB/styles/subSilver/template/mcp_foruminfo.html
new file mode 100644
index 0000000000..efe9a0d51d
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_foruminfo.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_front.html b/phpBB/styles/subSilver/template/mcp_front.html
new file mode 100644
index 0000000000..792f77f53a
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_front.html
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+ {L_LATEST_UNAPPROVED}
+
+
+ {L_FORUM}
+ {L_TOPIC}
+ {L_SUBJECT}
+ {L_AUTHOR}
+ {L_POST_TIME}
+
+
+
+ {unapproved.FORUM}
+ {unapproved.TOPIC}
+ {unapproved.SUBJECT}
+ {unapproved.AUTHOR}
+ {unapproved.POST_TIME}
+
+
+
+ {L_UNAPPROVED_POSTS_ZERO_TOTAL}
+
+
+
+
+ {L_UNAPPROVED_TOTAL}
+
+
+
+
+
+
+
+
+
+
+ {L_LATEST_REPORTED}
+
+
+ {L_FORUM}
+ {L_TOPIC}
+ {L_SUBJECT}
+ {L_REPORTER}
+ {L_REPORT_TIME}
+
+
+
+ {report.FORUM}
+ {report.TOPIC}
+ {report.SUBJECT}
+ {report.REPORTER}
+ {report.REPORT_TIME}
+
+
+
+ {L_REPORTS_ZERO_TOTAL}
+
+
+
+
+ {L_REPORTS_TOTAL}
+
+
+
+
+
+
+
+
+
+
+ {L_LATEST_LOGS}
+
+
+ {L_USERNAME}
+ {L_IP}
+ {L_ACTION}
+
+ {L_TIME}
+
+
+
+ {log.USERNAME}
+ {log.IP}
+ {log.ACTION}
+ {L_VIEW_TOPIC} | {L_VIEW_TOPIC_LOGS}
+ {log.TIME}
+
+
+
+ {L_NO_ENTRIES}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_header.html b/phpBB/styles/subSilver/template/mcp_header.html
new file mode 100644
index 0000000000..86958767a7
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_header.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_jumpbox.html b/phpBB/styles/subSilver/template/mcp_jumpbox.html
new file mode 100644
index 0000000000..b731c864b1
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_jumpbox.html
@@ -0,0 +1,10 @@
+{L_JUMP_TO}:
+
+{L_ALL_FORUMS}
+
+{L_SELECT_FORUM}
+
+ class="greyed"{options.SELECTED}/>{options.TEXT}
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_move.html b/phpBB/styles/subSilver/template/mcp_move.html
new file mode 100644
index 0000000000..d7e20a756d
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_move.html
@@ -0,0 +1,35 @@
+
+
+
+{S_HIDDEN_FIELDS}
+
+
+
+ {L_MODE_TITLE}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_post.html b/phpBB/styles/subSilver/template/mcp_post.html
new file mode 100644
index 0000000000..e5ce4d0abe
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_post.html
@@ -0,0 +1,124 @@
+
+
+
+
+
+ {L_POST_DETAILS}
+
+
+ {L_POSTER}
+ {POSTER_NAME}
+
+
+
+ {L_THIS_POST_IP}
+ {POST_IP}
+
+
+
+ {L_POSTED}
+ {POST_DATE}
+
+
+ {L_POST_SUBJECT}
+ {POST_SUBJECT}
+
+
+
+
+
+ {MESSAGE}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_queue.html b/phpBB/styles/subSilver/template/mcp_queue.html
new file mode 100644
index 0000000000..570e97fc75
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_queue.html
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_reports.html b/phpBB/styles/subSilver/template/mcp_reports.html
new file mode 100644
index 0000000000..eee0637818
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_reports.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ {PAGE_NUMBER}
+ {PAGINATION}
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_topic.html b/phpBB/styles/subSilver/template/mcp_topic.html
new file mode 100644
index 0000000000..6722048df9
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_topic.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/mcp_viewlogs.html b/phpBB/styles/subSilver/template/mcp_viewlogs.html
new file mode 100644
index 0000000000..4a9325f877
--- /dev/null
+++ b/phpBB/styles/subSilver/template/mcp_viewlogs.html
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+ {PAGE_NUMBER}
+ {PAGINATION}
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/memberlist_body.html b/phpBB/styles/subSilver/template/memberlist_body.html
new file mode 100644
index 0000000000..e32422252a
--- /dev/null
+++ b/phpBB/styles/subSilver/template/memberlist_body.html
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/memberlist_email.html b/phpBB/styles/subSilver/template/memberlist_email.html
new file mode 100644
index 0000000000..158b0b384a
--- /dev/null
+++ b/phpBB/styles/subSilver/template/memberlist_email.html
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/memberlist_im.html b/phpBB/styles/subSilver/template/memberlist_im.html
new file mode 100644
index 0000000000..3ca24f59fa
--- /dev/null
+++ b/phpBB/styles/subSilver/template/memberlist_im.html
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/memberlist_view.html b/phpBB/styles/subSilver/template/memberlist_view.html
new file mode 100644
index 0000000000..8023ef6d63
--- /dev/null
+++ b/phpBB/styles/subSilver/template/memberlist_view.html
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+ {L_VIEWING_PROFILE}
+
+
+ {L_USER_PRESENCE}
+ {L_USER_FORUM}
+
+
+
+
+ {USERNAME}
+
+
+ {KARMA_IMG}
+
+
+
+ {RANK}
+
+
+
+
+ {RANK_IMG}
+
+
+
+
+ {AVATAR_IMG}
+
+
+
+ {ONLINE_IMG}
+
+
+
+
+ {L_JOINED}:
+ {JOINED}
+
+
+ {L_VISITED}:
+ {VISITED}
+
+
+ {L_TOTAL_POSTS}:
+ {POSTS} [{POSTS_PCT} / {POSTS_DAY}]{L_SEARCH_USER_POSTS} {POSTS}
+
+
+ {L_ACTIVE_IN_FORUM}:
+ {ACTIVE_FORUM} [ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ] -
+
+
+ {L_ACTIVE_IN_TOPIC}:
+ {ACTIVE_TOPIC} [ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ] -
+
+
+
+
+ {L_CONTACT_USER}
+ {L_ABOUT_USER}
+
+
+
+
+
+
+ {L_SIGNATURE}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/message_body.html b/phpBB/styles/subSilver/template/message_body.html
new file mode 100644
index 0000000000..8a402d903d
--- /dev/null
+++ b/phpBB/styles/subSilver/template/message_body.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {MESSAGE_TITLE}
+
+
+ {MESSAGE_TEXT}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/phpBB/styles/subSilver/template/overall_footer.html b/phpBB/styles/subSilver/template/overall_footer.html
new file mode 100644
index 0000000000..c15e7267fa
--- /dev/null
+++ b/phpBB/styles/subSilver/template/overall_footer.html
@@ -0,0 +1,16 @@
+
+{ADMIN_LINK}
+
+
Powered by phpBB {PHPBB_VERSION} © 2002, 2003 phpBB Group {TRANSLATION_INFO}{DEBUG_OUTPUT}
+
+