Changeset 577 for trunk/Modules/FrontPage/FrontPage.php
- Timestamp:
- Sep 11, 2013, 10:37:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FrontPage/FrontPage.php
r565 r577 28 28 function HandleLoginForm() 29 29 { 30 global $ User, $Message, $MessageType;30 global $Message, $MessageType; 31 31 32 32 if(array_key_exists('action', $_GET)) … … 36 36 if(array_key_exists('LoginUser', $_POST) and array_key_exists('LoginPass', $_POST)) 37 37 { 38 $ User->Login($_POST['LoginUser'], $_POST['LoginPass']);39 if($ User->Role == LICENCE_ANONYMOUS)38 $this->System->User->Login($_POST['LoginUser'], $_POST['LoginPass']); 39 if($this->System->User->Role == LICENCE_ANONYMOUS) 40 40 { 41 41 $Message = 'Jméno nebo heslo bylo zadáno špatně.'; … … 43 43 } else 44 44 { 45 $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$ User->Name.'</strong>!';45 $Message = 'Přihlášení proběhlo úspěšně. Vítej <strong>'.$this->System->User->Name.'</strong>!'; 46 46 $MessageType = MESSAGE_INFORMATION; 47 47 } … … 54 54 if($_GET['action'] == 'logout') 55 55 { 56 if($ User->Role != LICENCE_ANONYMOUS)56 if($this->System->User->Role != LICENCE_ANONYMOUS) 57 57 { 58 58 WriteLog('Odhlášení', LOG_TYPE_USER); 59 $ User->Logout();59 $this->System->User->Logout(); 60 60 $Message = 'Byl jsi odhlášen.'; 61 61 $MessageType = MESSAGE_INFORMATION;
Note:
See TracChangeset
for help on using the changeset viewer.