Ignore:
Timestamp:
Dec 26, 2013, 7:37:44 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Volba pro trvalé přihlášení uživatele.
  • Opraveno: Ošetření chyb v SQL dotazech při povýšení verze databáze.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Portal/Portal.php

    r599 r619  
    8686        'Username' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
    8787        'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''),
     88        'StayLogged' => array('Type' => 'Boolean', 'Caption' => 'Zůstat přihlášen', 'Default' => '0'),
    8889      ),
    8990    ));
     
    242243          $Form->SetClass('UserLogin');
    243244          $Form->OnSubmit = '?Action=Login';
    244           $Result = $this->System->User->Login($_POST['Username'], $_POST['Password']);
     245          if($_POST['StayLogged'] == 0) $StayLogged = true;
     246            else $StayLogged = false;         
     247          $Result = $this->System->User->Login($_POST['Username'], $_POST['Password'], $StayLogged);
    245248          $Output .= $this->SystemMessage('Přihlášení', $Result);
    246249          if($Result <> USER_LOGGED_IN)
Note: See TracChangeset for help on using the changeset viewer.