Changeset 168 for www/user.php


Ignore:
Timestamp:
Mar 24, 2009, 1:36:24 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Ukládání poslední otevřené stránky do tabulky online uživatelů.
  • Opraveno: Nesledovat online uživatele pokud je skript spuštěn místně.
  • Opraveno: Chyba zobrazování odkazů na hlavní stránce dle práv uživatelů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • www/user.php

    r167 r168  
    4343      // Refresh time of last access
    4444      $this->Database->update('UserOnline', 'SessionId="'.$SID.'"', array('ActivityTime' => 'NOW()'));
    45     } else $this->Database->insert('UserOnline', array('SessionId' => $SID, 'User' => $this->AnonymousUserId, 'LoginTime' => 'NOW()', 'ActivityTime' => 'NOW()', 'IpAddress' => GetRemoteAddress(), 'HostName' => gethostbyaddr(GetRemoteAddress())));
     45    } else $this->Database->insert('UserOnline', array('SessionId' => $SID, 'User' => $this->AnonymousUserId, 'LoginTime' => 'NOW()', 'ActivityTime' => 'NOW()', 'IpAddress' => GetRemoteAddress(), 'HostName' => gethostbyaddr(GetRemoteAddress()), 'ScriptName' => $_SERVER['PHP_SELF']));
    4646    //echo($this->Database->LastQuery);
    4747
Note: See TracChangeset for help on using the changeset viewer.