Changeset 854 for trunk/includes
- Timestamp:
- Jan 19, 2016, 5:25:11 PM (9 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Global.php
r848 r854 7 7 if(file_exists(dirname(__FILE__).'/../Config/Config.php')) 8 8 include_once(dirname(__FILE__).'/../Config/Config.php'); 9 else die('Config file Config/Config.php not found'); 9 10 include_once(dirname(__FILE__).'/../Application/Version.php'); 10 11 include_once(dirname(__FILE__).'/Locale.php'); -
trunk/includes/System.php
r853 r854 493 493 if($this->Title != '') $Title = $this->Title.' - '.$Title; 494 494 $Output .= '<title>'.$Title.'</title>'. 495 '<script src="'.$this->System->Link('/style/respond.js').'"></script>'. 495 496 '</head><body>'; 496 497 … … 508 509 function ShowFooter() 509 510 { 510 global $ScriptStartTime, $Revision, $ReleaseTime ;511 global $ScriptStartTime, $Revision, $ReleaseTime, $Version; 511 512 512 513 $ScriptGenerateDuration = round(GetMicrotime() - $ScriptStartTime, 2); … … 517 518 $Output .= '</td>'. 518 519 '</tr><tr>'. 519 '<td colspan="4" class="page-bottom">'.T('Version').': '.$ Revision.' ('.HumanDate($ReleaseTime).')'.520 '<td colspan="4" class="page-bottom">'.T('Version').': '.$Version.' '.T('Revision').': '.$Revision.' ('.HumanDate($ReleaseTime).')'. 520 521 ' <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk">'.T('Source code').'</a> '. 521 522 '<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.