Changeset 828
- Timestamp:
- Apr 27, 2016, 11:02:50 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r826 r828 1 1 <?php 2 2 3 $Revision = 82 6; // Subversion revision3 $Revision = 828; // Subversion revision 4 4 $DatabaseRevision = 824; // SQL structure revision 5 $ReleaseTime = strtotime('2016-04- 16');5 $ReleaseTime = strtotime('2016-04-27'); -
trunk/Modules/IS/IS.php
r825 r828 86 86 { 87 87 $Class = new $Item['Callback'][0]($this->System); 88 $Output .= $Class->$Item['Callback'][1](); 88 $Method = $Item['Callback'][1]; 89 $Output .= $Class->$Method(); 89 90 } else $Output .= call_user_func($Item['Callback']); 90 91 } -
trunk/Modules/User/UserModel.php
r746 r828 74 74 { 75 75 // Refresh time of last access 76 $this->Database->update('UserOnline', ' SessionId="'.$SID.'"', array('ActivityTime' => 'NOW()'));76 $this->Database->update('UserOnline', '`SessionId`="'.$SID.'"', array('ActivityTime' => 'NOW()')); 77 77 } else $this->Database->insert('UserOnline', array('SessionId' => $SID, 78 78 'User' => null, 'LoginTime' => 'NOW()', 'ActivityTime' => 'NOW()', 79 79 'IpAddress' => GetRemoteAddress(), 'HostName' => gethostbyaddr(GetRemoteAddress()), 80 'ScriptName' => $_SERVER['PHP_SELF'] ));80 'ScriptName' => $_SERVER['PHP_SELF'], 'StayLogged' => 0, 'StayLoggedHash' => '')); 81 81 82 82 // Logged permanently? … … 200 200 function Login($Login, $Password, $StayLogged = false) 201 201 { 202 if($StayLogged) $StayLogged = 1; else $StayLogged = 0; 202 203 $SID = session_id(); 203 204 $Query = $this->Database->select('User', '*', 'Login="'.$Login.'"'); -
trunk/Modules/User/UserPage.php
r826 r828 64 64 { 65 65 $Class = new $Action[0]($this->System); 66 $Actions .= $Class->$Action[1](); 66 $Method = $Action[1]; 67 $Actions .= $Class->$Method(); 67 68 } else $Actions .= call_user_func($Action).'<br/>'; 68 69 } -
trunk/Readme.txt
r607 r828 29 29 30 30 5) Požadované balíky 31 Možnost instalovat na Fedoře přes yum install31 htmldoc - Pro generování PDF z HTML 32 32 33 htmldoc - Pro generování PDF z HTML33 Ubuntu: apt-get install htmldoc php7-mbstrin 34 34 35 35 6) Speedtest
Note:
See TracChangeset
for help on using the changeset viewer.