Changeset 864 for trunk/Application
- Timestamp:
- Feb 5, 2016, 11:47:36 PM (9 years ago)
- Location:
- trunk/Application
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Core.php
r862 r864 332 332 $this->PageHeaders[$Name] = $Callback; 333 333 } 334 335 function HumanDate($Time) 336 { 337 return(date('j.n.Y', $Time)); 338 } 334 339 } -
trunk/Application/Version.php
r862 r864 6 6 // and system will need database update. 7 7 8 $Version = '1.0 -alfa';9 $Revision = 86 2; // Subversion revision8 $Version = '1.0'; 9 $Revision = 864; // Subversion revision 10 10 $DatabaseRevision = 857; // Database structure revision 11 $Release Time = '2016-01-22';11 $ReleaseDate = strtotime('2016-02-05'); -
trunk/Application/View.php
r863 r864 109 109 function ShowFooter() 110 110 { 111 global $ScriptStartTime, $Revision, $Release Time, $Version;111 global $ScriptStartTime, $Revision, $ReleaseDate, $Version; 112 112 113 113 $ScriptGenerateDuration = round(GetMicrotime() - $ScriptStartTime, 2); … … 123 123 $Output .= '</td>'; 124 124 $Output .= '</tr><tr>'. 125 '<td colspan="4" class="page-bottom">'.T('Version').': '.$Version.' '.T('Revision').': '.$Revision.' ('. HumanDate($ReleaseTime).')'.125 '<td colspan="4" class="page-bottom">'.T('Version').': '.$Version.' '.T('Revision').': '.$Revision.' ('.$this->System->HumanDate($ReleaseDate).')'. 126 126 ' <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk">'.T('Source code').'</a> '. 127 127 '<a href="http://svn.zdechov.net/trac/wowpreklad/log/trunk?verbose=on">'.T('Changelog').'</a> '.
Note:
See TracChangeset
for help on using the changeset viewer.