Changeset 53 for trunk/www/user.php


Ignore:
Timestamp:
Jul 4, 2009, 9:50:22 AM (15 years ago)
Author:
george
Message:
  • Přidáno: Funkce pro generování patchlistu.
  • Přidáno: Testovací funkce pro čtení z logovací roury.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/user.php

    r52 r53  
    4545    $SID = session_id();
    4646
    47     // Remove nonactive users
     47    // Remove inactive users
    4848    $DbResult = $this->Database->select('UserOnline', 'Id, User', 'ActivityTime < DATE_SUB(NOW(), INTERVAL '.$this->OnlineStateTimeout.' SECOND)');
    4949    while($DbRow = $DbResult->fetch_array())
    5050    {
     51      $this->System->Modules['User']->User['Id'] = $DbRow['User'];
    5152      if($DbRow['User'] != $this->AnonymousUserId) $this->System->Modules['Log']->NewRecord('User', 'Logout');
    5253      $this->Database->delete('UserOnline', 'Id='.$DbRow['Id']);
Note: See TracChangeset for help on using the changeset viewer.