Changeset 499 for trunk/includes


Ignore:
Timestamp:
Jan 30, 2013, 10:34:18 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Použití NULL hodnoty při práci s tabulkou Log a slovníkem.
Location:
trunk/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/global_function.php

    r486 r499  
    255255    else $IP = addslashes($_SERVER['REMOTE_ADDR']);
    256256
    257   if(isset($User->Id)) $UserId = $User->Id;
    258     else $UserId = 0;
     257  if(!is_null($User->Id)) $UserId = $User->Id;
     258    else $UserId = 'NULL';
    259259  $Query = 'INSERT INTO `Log` ( `User` , `Type` , `Text` , `Date` , `IP` )
    260260   VALUES ('.$UserId.', '.$Type.', "'.addslashes($Text).'", NOW(), "'.$IP.'")';
  • trunk/includes/user.php

    r495 r499  
    8484  function SetAnonymous()
    8585  {
    86     $this->Id = 0;
     86    $this->Id = NULL;
    8787    $this->Name = 'anonymous';
    8888    $this->Role = LICENCE_ANONYMOUS;
    89     $this->Language = 1;
     89    $this->Language = NULL;
    9090    $this->Redirecting = 1;
    91     $this->Team = 0;
     91    $this->Team = '';
    9292    $this->Email = '';
    9393  }
Note: See TracChangeset for help on using the changeset viewer.