Changeset 307 for minimanager/edit.php


Ignore:
Timestamp:
Mar 13, 2008, 8:18:42 PM (17 years ago)
Author:
george
Message:

Aktualizace na minimanager 0.1.6g.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/edit.php

    r306 r307  
    88 * License: GNU General Public License v2(GPL)
    99 */
    10  
     10
    1111require_once("header.php");
    1212valid_login(0);
     
    2626 if ($acc = $sql->fetch_row($result)) {
    2727  require_once("scripts/id_tab.php");
    28  
     28
    2929  $output .= "<center>
    3030  <script type=\"text/javascript\" src=\"js/sha1.js\"></script>
     
    8484        <td>".$sql->result($result, 0)."</td>
    8585      </tr>";
    86          
     86
    8787        $sql->connect($characters_db[$realm_id]['addr'], $characters_db[$realm_id]['user'], $characters_db[$realm_id]['pass'], $characters_db[$realm_id]['name']);
    88         $result = $sql->query("SELECT guid,name,race,class,SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 35), ' ', -1) FROM `character` WHERE account = $user_id");
     88        $result = $sql->query("SELECT guid,name,race,class,SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 35), ' ', -1) FROM `characters` WHERE account = $user_id");
    8989
    9090        $output .= "<tr>
     
    9494
    9595        while ($char = $sql->fetch_array($result)){
    96                 $output .= "<tr> 
     96                $output .= "<tr>
    9797                <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'---></td>
    9898                <td><a href=\"char.php?id=$char[0]\">$char[1]  - ".get_player_race($char[2])." ".get_player_class($char[3])." | lvl $char[4]</a></td>
     
    124124                                        $lang = explode('.', $file);
    125125                                        if(isset($lang[1]) && $lang[1] == 'php'){
    126                                                 $output .= "<option value=\"{$lang[0]}\"";
    127                                                 if (isset($_COOKIE["lang"]) && ($_COOKIE["lang"] == $lang[0])) $output .= " selected=\"selected\" ";
    128                                                 $output .= ">{$lang[0]}</option>";
    129                                         }
     126                                           if (($file != 'Forum_enUS.php')&&($file != 'Forum_zhCN.php')&&($file != 'Forum_frFR.php')&&($file != 'Forum_deDE.php')&&($file != 'Forum_Italiano.php')){
     127                                             $output .= "<option value=\"{$lang[0]}\"";
     128                                             if (isset($_COOKIE["lang"]) && ($_COOKIE["lang"] == $lang[0])) $output .= " selected=\"selected\" ";
     129                                             $output .= ">{$lang[0]}</option>";
     130                                             }
     131                                         }
    130132                                }
    131133                        closedir($dh);
     
    149151                        if ($dh = opendir("./templates")){
    150152                                while (($file = readdir($dh)) != false){
    151                                         if (($file != '.')&&($file != '..')&&($file != '.htaccess')&&($file != 'index.html')&&($file != '.svn')){
     153                                        if (($file != '.')&&($file != '..')&&($file != '.htaccess')&&($file != 'index.html')&&($file != '.svn')&&($file != 'pomm.css')){
    152154                                                $output .= "<option value=\"$file\"";
    153155                                                if (isset($_COOKIE["css_template"]) && ($_COOKIE["css_template"] == $file)) $output .= " selected=\"selected\" ";
     
    169171        <br /></center>";
    170172 } else error($lang_global['err_no_records_found']);
    171  
     173
    172174 $sql->close();
    173175}
     
    189191 $new_mail = $sql->quote_smart(trim($_POST['mail']));
    190192 $new_tbc = $sql->quote_smart(trim($_POST['tbc']));
    191  
     193
    192194 //make sure the mail is valid mail format
    193195 require_once("scripts/valid_lib.php");
     
    268270//###############################################################################################################
    269271$err = (isset($_GET['error'])) ? $_GET['error'] : NULL;
    270        
     272
    271273$output .= "<div class=\"top\">";
    272274switch ($err) {
     
    298300        break;
    299301case "delete_user":
    300         delete_user(); 
     302        delete_user();
    301303        break;
    302304case "dodelete_user":
Note: See TracChangeset for help on using the changeset viewer.