Changeset 15 for trunk/www/user.php


Ignore:
Timestamp:
Jun 12, 2009, 8:09:48 AM (15 years ago)
Author:
george
Message:
  • Přidáno: Nastavení parametrů gcc překladu emulátoru přes konfigurační soubor.
  • Přidáno: Podpora řazení dle sloupců v tabulkách.
  • Upraveno: Nezjišťovat informace o stavu serverů z tabulek mangosu, ale ukládat stavové informace serverů přímo do tabulky Server. Nutno provádět aktualizaci tabulky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/user.php

    r14 r15  
    141141    {
    142142      $Row = $Query->fetch_assoc();
    143       if($Row['Password'] != sha1($Password)) $Result = BAD_PASSWORD;
     143      if($Row['Password'] != $Password) $Result = BAD_PASSWORD;
    144144      else if($Row['Locked'] == 1) $Result = ACCOUNT_LOCKED;
    145145      else
Note: See TracChangeset for help on using the changeset viewer.