- {USERNAME} {L_WROTE}:
-
-
-
-
-
- {L_QUOTE}: |
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- {L_CODE}: |
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-{TEXT}
-
-{TEXT}
-
-
-
-{DESCRIPTION}
-
-{DESCRIPTION}
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/confirm_body.html b/phpBB/templates/subSilver/confirm_body.html
deleted file mode 100644
index 896ded23b8..0000000000
--- a/phpBB/templates/subSilver/confirm_body.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/editor.js b/phpBB/templates/subSilver/editor.js
deleted file mode 100644
index dfe9e4c9d5..0000000000
--- a/phpBB/templates/subSilver/editor.js
+++ /dev/null
@@ -1,253 +0,0 @@
-// 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/templates/subSilver/error_body.html b/phpBB/templates/subSilver/error_body.html
deleted file mode 100644
index dd71af8518..0000000000
--- a/phpBB/templates/subSilver/error_body.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
- |
-
-
- {ERROR_MESSAGE} |
-
-
- |
-
- |
-
-
-
-
diff --git a/phpBB/templates/subSilver/faq_body.html b/phpBB/templates/subSilver/faq_body.html
deleted file mode 100644
index 00d8b0594f..0000000000
--- a/phpBB/templates/subSilver/faq_body.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- {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/templates/subSilver/gcp_body.html b/phpBB/templates/subSilver/gcp_body.html
deleted file mode 100644
index 4acf9aaf51..0000000000
--- a/phpBB/templates/subSilver/gcp_body.html
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-
-
diff --git a/phpBB/templates/subSilver/gcp_pending_info.html b/phpBB/templates/subSilver/gcp_pending_info.html
deleted file mode 100644
index 00486901d7..0000000000
--- a/phpBB/templates/subSilver/gcp_pending_info.html
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
diff --git a/phpBB/templates/subSilver/gcp_user_body.html b/phpBB/templates/subSilver/gcp_user_body.html
deleted file mode 100644
index 8ab2dce7b2..0000000000
--- a/phpBB/templates/subSilver/gcp_user_body.html
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
- {L_GROUP_MEMBERSHIP_DETAILS} |
-
-
-
- {L_YOU_BELONG_GROUPS} |
-
-
- |
-
-
-
-
- {L_PENDING_GROUPS} |
-
-
- |
-
-
-
-
-
- {L_JOIN_A_GROUP} |
-
-
- {L_SELECT_A_GROUP} |
-
-
- |
-
-
-
-
-
-
-
-
-
diff --git a/phpBB/templates/subSilver/images/background.png b/phpBB/templates/subSilver/images/background.png
deleted file mode 100644
index 9fd495a9be..0000000000
Binary files a/phpBB/templates/subSilver/images/background.png and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/cellpic.gif b/phpBB/templates/subSilver/images/cellpic.gif
deleted file mode 100644
index 47457ef5f7..0000000000
Binary files a/phpBB/templates/subSilver/images/cellpic.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/created_by.jpg b/phpBB/templates/subSilver/images/created_by.jpg
deleted file mode 100644
index f27472781e..0000000000
Binary files a/phpBB/templates/subSilver/images/created_by.jpg and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_faq.gif b/phpBB/templates/subSilver/images/icon_mini_faq.gif
deleted file mode 100644
index b8b873d159..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_faq.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_groups.gif b/phpBB/templates/subSilver/images/icon_mini_groups.gif
deleted file mode 100644
index be5c2018ce..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_groups.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_login.gif b/phpBB/templates/subSilver/images/icon_mini_login.gif
deleted file mode 100644
index 30b309b26c..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_login.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_members.gif b/phpBB/templates/subSilver/images/icon_mini_members.gif
deleted file mode 100644
index a79a5a74b2..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_members.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_message.gif b/phpBB/templates/subSilver/images/icon_mini_message.gif
deleted file mode 100644
index 57071d6e8f..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_message.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_profile.gif b/phpBB/templates/subSilver/images/icon_mini_profile.gif
deleted file mode 100644
index 3dc0871896..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_profile.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_register.gif b/phpBB/templates/subSilver/images/icon_mini_register.gif
deleted file mode 100644
index 11b8f31718..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_register.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/icon_mini_search.gif b/phpBB/templates/subSilver/images/icon_mini_search.gif
deleted file mode 100644
index 1295e9f1db..0000000000
Binary files a/phpBB/templates/subSilver/images/icon_mini_search.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/index.htm b/phpBB/templates/subSilver/images/index.htm
deleted file mode 100644
index 491b26dd23..0000000000
--- a/phpBB/templates/subSilver/images/index.htm
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-subSilver created by subBlue Design
-
-
-
-
-
-
-
-  |
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/images/logo_phpBB.gif b/phpBB/templates/subSilver/images/logo_phpBB.gif
deleted file mode 100644
index 37aa0fd4d9..0000000000
Binary files a/phpBB/templates/subSilver/images/logo_phpBB.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/spacer.gif b/phpBB/templates/subSilver/images/spacer.gif
deleted file mode 100644
index 5bfd67a2d6..0000000000
Binary files a/phpBB/templates/subSilver/images/spacer.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/images/whosonline.gif b/phpBB/templates/subSilver/images/whosonline.gif
deleted file mode 100644
index b450927432..0000000000
Binary files a/phpBB/templates/subSilver/images/whosonline.gif and /dev/null differ
diff --git a/phpBB/templates/subSilver/index.htm b/phpBB/templates/subSilver/index.htm
deleted file mode 100644
index 79908c5993..0000000000
--- a/phpBB/templates/subSilver/index.htm
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-subSilver created by subBlue Design
-
-
-
-
-
-
-
-  |
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/index_body.html b/phpBB/templates/subSilver/index_body.html
deleted file mode 100644
index 272b51a0e3..0000000000
--- a/phpBB/templates/subSilver/index_body.html
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
-
-
-
- {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/templates/subSilver/jumpbox.html b/phpBB/templates/subSilver/jumpbox.html
deleted file mode 100644
index 9858c7e69d..0000000000
--- a/phpBB/templates/subSilver/jumpbox.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
diff --git a/phpBB/templates/subSilver/login_body.html b/phpBB/templates/subSilver/login_body.html
deleted file mode 100644
index 8164ef69dd..0000000000
--- a/phpBB/templates/subSilver/login_body.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/login_forum.html b/phpBB/templates/subSilver/login_forum.html
deleted file mode 100644
index 20cac9a3d7..0000000000
--- a/phpBB/templates/subSilver/login_forum.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_forum.html b/phpBB/templates/subSilver/mcp_forum.html
deleted file mode 100644
index e2ad68c00f..0000000000
--- a/phpBB/templates/subSilver/mcp_forum.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_foruminfo.html b/phpBB/templates/subSilver/mcp_foruminfo.html
deleted file mode 100644
index efe9a0d51d..0000000000
--- a/phpBB/templates/subSilver/mcp_foruminfo.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_front.html b/phpBB/templates/subSilver/mcp_front.html
deleted file mode 100644
index 792f77f53a..0000000000
--- a/phpBB/templates/subSilver/mcp_front.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
- {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/templates/subSilver/mcp_header.html b/phpBB/templates/subSilver/mcp_header.html
deleted file mode 100644
index 86958767a7..0000000000
--- a/phpBB/templates/subSilver/mcp_header.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_jumpbox.html b/phpBB/templates/subSilver/mcp_jumpbox.html
deleted file mode 100644
index b731c864b1..0000000000
--- a/phpBB/templates/subSilver/mcp_jumpbox.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{L_JUMP_TO}:
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_move.html b/phpBB/templates/subSilver/mcp_move.html
deleted file mode 100644
index d7e20a756d..0000000000
--- a/phpBB/templates/subSilver/mcp_move.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_post.html b/phpBB/templates/subSilver/mcp_post.html
deleted file mode 100644
index e5ce4d0abe..0000000000
--- a/phpBB/templates/subSilver/mcp_post.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_queue.html b/phpBB/templates/subSilver/mcp_queue.html
deleted file mode 100644
index 570e97fc75..0000000000
--- a/phpBB/templates/subSilver/mcp_queue.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_reports.html b/phpBB/templates/subSilver/mcp_reports.html
deleted file mode 100644
index eee0637818..0000000000
--- a/phpBB/templates/subSilver/mcp_reports.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- {PAGE_NUMBER} |
- {PAGINATION} |
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_topic.html b/phpBB/templates/subSilver/mcp_topic.html
deleted file mode 100644
index 6722048df9..0000000000
--- a/phpBB/templates/subSilver/mcp_topic.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/mcp_viewlogs.html b/phpBB/templates/subSilver/mcp_viewlogs.html
deleted file mode 100644
index 4a9325f877..0000000000
--- a/phpBB/templates/subSilver/mcp_viewlogs.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/memberlist_body.html b/phpBB/templates/subSilver/memberlist_body.html
deleted file mode 100644
index 5b27538483..0000000000
--- a/phpBB/templates/subSilver/memberlist_body.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/memberlist_email.html b/phpBB/templates/subSilver/memberlist_email.html
deleted file mode 100644
index 76d3cb612a..0000000000
--- a/phpBB/templates/subSilver/memberlist_email.html
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/memberlist_im.html b/phpBB/templates/subSilver/memberlist_im.html
deleted file mode 100644
index 3ca24f59fa..0000000000
--- a/phpBB/templates/subSilver/memberlist_im.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/memberlist_view.html b/phpBB/templates/subSilver/memberlist_view.html
deleted file mode 100644
index 6cbe0d8030..0000000000
--- a/phpBB/templates/subSilver/memberlist_view.html
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/message_body.html b/phpBB/templates/subSilver/message_body.html
deleted file mode 100644
index 2b8b6e5ea4..0000000000
--- a/phpBB/templates/subSilver/message_body.html
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
- {MESSAGE_TITLE} |
-
-
-
-
- |
-
-
- {MESSAGE_TEXT} |
-
-
- |
-
- |
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phpBB/templates/subSilver/overall_footer.html b/phpBB/templates/subSilver/overall_footer.html
deleted file mode 100644
index 602109677e..0000000000
--- a/phpBB/templates/subSilver/overall_footer.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-{ADMIN_LINK}
-
- Powered by phpBB {PHPBB_VERSION} © 2002, 2003 phpBB Group {TRANSLATION_INFO}{DEBUG_OUTPUT}
-
- |
-
-