| <?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> |