| ... | ... |
@@ -34,6 +34,9 @@ if($convert == "convert_mod") {
|
| 34 | 34 |
if($convert == "convert_utf") {
|
| 35 | 35 |
if(file_exists("admin/convert_utf.php")) include_once("admin/convert_utf.php");
|
| 36 | 36 |
} |
| 37 |
+if($convert == "convert_0520") {
|
|
| 38 |
+ if(file_exists("admin/convert_0520.php")) include_once("admin/convert_0520.php");
|
|
| 39 |
+} |
|
| 37 | 40 |
if($convert == "convert_0900") {
|
| 38 | 41 |
if(file_exists("admin/convert_0900.php")) include_once("admin/convert_0900.php");
|
| 39 | 42 |
} |
| ... | ... |
@@ -44,6 +47,7 @@ $output .= " |
| 44 | 47 |
<ul> |
| 45 | 48 |
<li><a href='admin.php?action=convert&conv=convert_mod'>"._CONVERT_MOD."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERTMOD."</span></A></li> |
| 46 | 49 |
<li><a href='admin.php?action=convert&conv=convert_utf'>"._CONVERT_UTF."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERTUTF."</span></A></li> |
| 50 |
+ <li><a href='admin.php?action=convert&conv=convert_0520'>"._CONVERT_0520."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERT0520."</span></A></li> |
|
| 47 | 51 |
<li><a href='admin.php?action=convert&conv=convert_0900'>"._CONVERT_0900."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERT0900."</span></A></li> |
| 48 | 52 |
<li><a href='admin.php?action=convert&conv=convert_1400'>"._CONVERT_1400."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERT1400."</span></A></li> |
| 49 | 53 |
</ul>"; |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,49 @@ |
| 1 |
+<?php |
|
| 2 |
+// ---------------------------------------------------------------------- |
|
| 3 |
+// eFiction 3.0 |
|
| 4 |
+// Copyright (c) 2007 by Tammy Keefer |
|
| 5 |
+// Valid HTML 4.01 Transitional |
|
| 6 |
+// Based on eFiction 1.1 |
|
| 7 |
+// Copyright (C) 2003 by Rebecca Smallwood. |
|
| 8 |
+// http://efiction.sourceforge.net/ |
|
| 9 |
+// ---------------------------------------------------------------------- |
|
| 10 |
+// LICENSE |
|
| 11 |
+// |
|
| 12 |
+// This program is free software; you can redistribute it and/or |
|
| 13 |
+// modify it under the terms of the GNU General Public License (GPL) |
|
| 14 |
+// as published by the Free Software Foundation; either version 2 |
|
| 15 |
+// of the License, or (at your option) any later version. |
|
| 16 |
+// |
|
| 17 |
+// This program is distributed in the hope that it will be useful, |
|
| 18 |
+// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 19 |
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 20 |
+// GNU General Public License for more details. |
|
| 21 |
+// |
|
| 22 |
+// To read the license please visit http://www.gnu.org/copyleft/gpl.html |
|
| 23 |
+// ---------------------------------------------------------------------- |
|
| 24 |
+ |
|
| 25 |
+if(!defined("_CHARSET")) exit( );
|
|
| 26 |
+ |
|
| 27 |
+// converted maintenance page |
|
| 28 |
+ |
|
| 29 |
+$convert = isset($_GET['conv']) ? $_GET['conv'] : false; |
|
| 30 |
+$output .= "<div id='pagetitle'>"._ARCHIVECONV."</div>"; |
|
| 31 |
+if($convert == "convert_mod") {
|
|
| 32 |
+ if(file_exists("admin/convert_mod.php")) include_once("admin/convert_mod.php");
|
|
| 33 |
+} |
|
| 34 |
+if($convert == "convert_utf") {
|
|
| 35 |
+ if(file_exists("admin/convert_utf.php")) include_once("admin/convert_utf.php");
|
|
| 36 |
+} |
|
| 37 |
+if($convert == "convert_0900") {
|
|
| 38 |
+ if(file_exists("admin/convert_0900.php")) include_once("admin/convert_0900.php");
|
|
| 39 |
+} |
|
| 40 |
+if($convert == "convert_1400") {
|
|
| 41 |
+ if(file_exists("admin/convert_1400.php")) include_once("admin/convert_1400.php");
|
|
| 42 |
+} |
|
| 43 |
+$output .= " |
|
| 44 |
+<ul> |
|
| 45 |
+ <li><a href='admin.php?action=convert&conv=convert_mod'>"._CONVERT_MOD."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERTMOD."</span></A></li> |
|
| 46 |
+ <li><a href='admin.php?action=convert&conv=convert_utf'>"._CONVERT_UTF."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERTUTF."</span></A></li> |
|
| 47 |
+ <li><a href='admin.php?action=convert&conv=convert_0900'>"._CONVERT_0900."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERT0900."</span></A></li> |
|
| 48 |
+ <li><a href='admin.php?action=convert&conv=convert_1400'>"._CONVERT_1400."</a> <A HREF=\"#\" class=\"pophelp\">[?]<span>"._HELP_CONVERT1400."</span></A></li> |
|
| 49 |
+</ul>"; |