Changeset 712 for trunk/includes
- Timestamp:
- Jan 5, 2014, 4:28:51 PM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r711 r712 6 6 // and system will need database update. 7 7 8 $Revision = 71 1; // Subversion revision9 $DatabaseRevision = 695; // Database structure revision8 $Revision = 712; // Subversion revision 9 $DatabaseRevision = 712; // Database structure revision 10 10 $ReleaseTime = '2014-01-05'; -
trunk/includes/global.php
r703 r712 712 712 return($Output); 713 713 } 714 715 function GetRemoteAddress() 716 { 717 if(array_key_exists('HTTP_X_FORWARDED_FOR',$_SERVER)) $IP = $_SERVER['HTTP_X_FORWARDED_FOR'] ; 718 else if(array_key_exists('REMOTE_ADDR', $_SERVER)) $IP = $_SERVER['REMOTE_ADDR']; 719 else $IP = '0.0.0.0'; 720 return($IP); 721 } -
trunk/includes/system.php
r711 r712 279 279 } else 280 280 { 281 $Output .= '<form action="'.$this->System->Link('/?action=login').'" method="post"> '. 282 T('Name').': <input type="text" name="LoginUser" size="8 " /> '. 283 T('Password').': <td><input type="password" name="LoginPass" size="8" /> '. 284 '<input type="submit" value="'.T('Login').'" /></form> '. 281 $Output .= '<a href="'.$this->System->Link('/login/').'">'.T('Login').'</a> '. 285 282 '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a>'; 286 283 } … … 446 443 '</body>'. 447 444 '</html>'; 448 $this->System->User->Store();449 445 return($Output); 450 446 }
Note:
See TracChangeset
for help on using the changeset viewer.