hxp
2025-06-09 6c3f6335c70859ded94a1ad8d218acb0ac34239c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
include_once "/Account/User.php";
include_once "/language/lang.php";
 
\Logging\CreateLogging("RefixWorldLV.php");
$Permission = \User\Permission::P_RefixWorldLV;
$spid = $_SESSION['spid'];
$user = new \User\User($_SESSION['UserAccount']);
if (!$user->HavePermission($Permission)) {
    exit;
}
$serversArray = $user->GetServers();
 
?>
 
<!DOCTYPE html>
<html>
 
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>纠正世界等级</title>
</head>
 
<body>
 
    <center>
        <p>纠正世界等级</P>
    </center>
 
    <form id="RefixWorldLV" name="RefixWorldLV" action="/Common/GMCmdProcess.php" method="post">
        <p>
 
        </P>
 
        <?php
        include_once "/Common/SelectServer.php";
        ?>
        <br />
        <hr />
        <?php
        if ($user->NeedCheckKey()) {
            echo \Lang\gettext("授权码(key)") . ":";
            echo "<input type=\"text\" name=\"key\" id=\"key\" />";
        } else {
            echo "<input type=\"hidden\" name=\"key\" id=\"key\" />";
        }
        ?>
        <p>
            <input type="hidden" name="Permission" value="<?php echo $Permission; ?>" />
            <input type="hidden" name="pack_type" id="pack_type" value="GMT_RefixWorldLV" />
            <input type="submit" name="submit" align="center" value="提交" onclick="return CheckKey('key')" />
        </P>
        <br />
    </form>
 
    <script type='text/javascript' src="/js/common.js"></script>
    <script type='text/javascript' src="/Common/selectserver.js"></script>
 
</body>
 
</html>