Changeset 20 for user.php


Ignore:
Timestamp:
Oct 22, 2008, 9:31:11 AM (16 years ago)
Author:
george
Message:
  • Upraveno: Redukce použité paměti změnou načítání seznamů "na přání" místo všech najednou.
  • Upraveno: Použití fetch_assoc a fetch_row místo společného fetch_array,
File:
1 edited

Legend:

Unmodified
Added
Removed
  • user.php

    r18 r20  
    5151    // Zkontroluj přihlášení
    5252    $Query = $this->Database->select($this->TableUserOnline, '*', 'SessionId="'.$SID.'"');
    53     $Row = $Query->fetch_array();
     53    $Row = $Query->fetch_assoc();
    5454    if($Row['User'] != 0)
    5555    {
     
    115115    if($DbResult->num_rows > 0)
    116116    {
    117       $Row = $DbResult->fetch_array();
     117      $Row = $DbResult->fetch_assoc();
    118118      if($Hash == $Row['Password'])
    119119      {
     
    133133    if($Query->num_rows > 0)
    134134    {
    135       $Row = $Query->fetch_array();
     135      $Row = $Query->fetch_assoc();
    136136      if($Row['Password'] != $Password) $Result = BAD_PASSWORD;
    137137      else if($Row['Locked'] == 1) $Result = ACCOUNT_LOCKED;
     
    167167    if($DbResult->num_rows > 0)
    168168    {
    169       $Row = $DbResult->fetch_array();
     169      $Row = $DbResult->fetch_assoc();
    170170      $NewPassword = substr(sha1(strtoupper($Row['Name'])), 0, 7);
    171171
     
    185185    if($DbResult->num_rows > 0)
    186186    {
    187       $Row = $DbResult->fetch_array();
     187      $Row = $DbResult->fetch_assoc();
    188188      $NewPassword2 = substr(sha1(strtoupper($Row['Name'])), 0, 7);
    189189      if(($NewPassword == $NewPassword2) and ($Hash == $Row['Password']))
Note: See TracChangeset for help on using the changeset viewer.