Ignore:
Timestamp:
Nov 25, 2013, 10:19:37 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: Missing config item Advertisement.
  • Fixed: User registration was not working after installation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/User/Registration.php

    r578 r601  
    7474        function Show()
    7575        {
    76                 global $User, $Config;
     76                global $Config;
    7777       
    7878                $Output = '';
     
    105105                                                        {
    106106                                                                if($Team == 0) $Team = 'NULL';
    107                                                                 $User->Register($UserName, $Pass, $Email, $Language, $Team, $PreferredVersion);
     107                                                                $this->System->User->Register($UserName, $Pass, $Email, $Language, $Team, $PreferredVersion);
    108108                                                                $Output .= ShowMessage('Registrace proběhla úspěšně.');
    109109                                                                $Output .= 'Přečtěte si pozorně <a href="'.$this->System->Link('/info.php').'">pokyny pro překladání</a> a můžete pak hned začít překládat.';
    110                                                                 $User->Login($UserName, $Pass);
     110                                                                $this->System->User->Login($UserName, $Pass);
    111111                                                                $this->System->ModuleManager->Modules['Log']->WriteLog('Uživatel se zaregistroval: '.$UserName, LOG_TYPE_USER);
    112112                                                                $ShowForm = false;
Note: See TracChangeset for help on using the changeset viewer.