Changeset 630
- Timestamp:
- Jan 3, 2014, 10:41:52 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r628 r630 1 1 <?php 2 2 3 $Revision = 6 28; // Subversion revision3 $Revision = 630; // Subversion revision 4 4 $DatabaseRevision = 627; // SQL structure revision 5 $ReleaseTime = mktime(0, 0, 0, 1, 2, 2014);5 $ReleaseTime = mktime(0, 0, 0, 2, 2, 2014); -
trunk/Modules/Portal/Portal.php
r619 r630 243 243 $Form->SetClass('UserLogin'); 244 244 $Form->OnSubmit = '?Action=Login'; 245 if( $_POST['StayLogged'] == 0) $StayLogged = true;245 if(array_key_exists('StayLogged', $_POST) and ($_POST['StayLogged'] == 'on')) $StayLogged = true; 246 246 else $StayLogged = false; 247 247 $Result = $this->System->User->Login($_POST['Username'], $_POST['Password'], $StayLogged);
Note:
See TracChangeset
for help on using the changeset viewer.