Ignore:
Timestamp:
Dec 23, 2007, 2:55:36 PM (17 years ago)
Author:
george
Message:

Minimanager 0.1.6b

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/command.php

    r142 r178  
    2424  3 => array ('level3','')
    2525 );
    26  
     26
    2727 $sql = new SQL;
    2828 $sql->connect($mangos_db[$realm_id]['addr'], $mangos_db[$realm_id]['user'], $mangos_db[$realm_id]['pass'], $mangos_db[$realm_id]['name']);
     
    4545   $levels[$data[2]][1] .= $tmp_output;
    4646 }
    47  
     47
    4848 $output .= "<center>
    4949             <form method=\"get\" action=\"command.php\" name=\"form\">
     
    5151
    5252 for ($i=0; $i<=$user_lvl; $i++){
     53     if ($i <= 3) {
    5354     $output .= "<fieldset class=\"full_frame\">
    5455                 <legend>".
     
    6162                     <th width=\"2%\"></th>
    6263                     <th width=\"13%\">{$lang_command['command']}</th>
    63                      <th width=\"20%\">{$lang_command['syntax']}</th>                                   
     64                     <th width=\"20%\">{$lang_command['syntax']}</th>
    6465                     <th width=\"65%\">{$lang_command['description']}</th>
    6566                   </tr>" . $levels[$i][1];
     67
    6668        if ($user_lvl > 2) {
    6769                $output .= "</table><br /><table class=\"hidden\" style=\"width: 720px;\"><td>";
     
    6971                }
    7072        $output .= "</table></div></fieldset>";
     73        }
    7174 }
    7275 $output .= "</form><br /></center>";
     
    98101               </tr>";
    99102
    100  $commands = array_keys($check);       
     103 $commands = array_keys($check);
    101104 for ($i=0; $i<count($check); $i++){
    102105   $output .= "<tr>
     
    137140
    138141 $commands = array_keys($change);
    139  
     142
    140143 // Quick sanity check
    141144 for ($i=0; $i<count($change); $i++) {
     
    143146       redirect("command.php?error=1");
    144147 }
    145    
     148
    146149 for ($i=0; $i<count($change); $i++) {
    147150   $query = $sql->query("UPDATE command SET `security` = '".$change[$commands[$i]]."' WHERE name= '$commands[$i]'");
     
    170173
    171174switch ($action) {
    172 case "update": 
     175case "update":
    173176   update_commands();
    174177   break;
    175 case "doupdate": 
     178case "doupdate":
    176179   doupdate_commands();
    177180   break;
Note: See TracChangeset for help on using the changeset viewer.