Changeset 9 for user.php


Ignore:
Timestamp:
Oct 11, 2008, 11:06:21 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Částečná podpora pro historii všech záznamů. Editace vytváří nový záznam. Zobrazení historie dané položky.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • user.php

    r8 r9  
    6868    while($DbRow = $DbResult->fetch_array())
    6969    {
    70       $this->Database->delete($this->TableUserOnline, 'Id='.$DbRow['User']);
     70      $this->Database->delete($this->TableUserOnline, 'User='.$DbRow['User']);
    7171      $this->System->Modules['Log']->NewRecord('User', 'Logout');
    7272    }
     
    9696          $this->Database->insert($this->TableUser, array('Name' => $Nick, 'FirstName' => $FirstName, 'SecondName' => $SecondName, 'Password' => sha1($Password), 'Email' => $Email, 'RegistrationTime' => 'NOW()', 'Locked' => 1));
    9797          $UserId = $this->Database->insert_id;
    98          
     98
    9999          $Subject = FromUTF8('Registrace nového účtu', 'iso2');
    100100          $Message = 'Provedli jste registraci nového účtu na serveru <a href="http://'.$Config['Web']['Host'].$Config['Web']['RootFolder'].'">http://'.$Config['Web']['Host'].$Config['Web']['RootFolder']."</a>.<br>\nPokud jste tak neučinili, měli by jste tento email ignorovat.<br><br>\n\nVáš účet je: ".$Nick."\n<br>Pro dokončení registrace klikněte na ".'<a href="http://'.$Config['Web']['Host'].$Config['Web']['RootFolder'].'/?Action=UserRegisterConfirm&amp;User='.$UserId.'&amp;H='.sha1($Password).'">tento odkaz</a>.'."\n<br> \n\n<br><br>Na tento email neodpovídejte.";
Note: See TracChangeset for help on using the changeset viewer.