Changeset 627 for trunk/Common
- Timestamp:
- Jan 2, 2014, 12:42:49 PM (11 years ago)
- Location:
- trunk/Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r599 r627 53 53 function HumanDate($Time) 54 54 { 55 $Date = explode(' ', $Time); 56 $Parts = explode('-', $Date[0]); 57 if($Date != '0000-00-00') return(($Parts[2]*1).'.'.($Parts[1]*1).'.'.$Parts[0]); 58 else return(' '); 55 if($Time != '') { 56 $Date = explode(' ', $Time); 57 $Parts = explode('-', $Date[0]); 58 if($Date != '0000-00-00') return(($Parts[2]*1).'.'.($Parts[1]*1).'.'.$Parts[0]); 59 else return(' '); 60 } else return(' '); 59 61 } 60 62 -
trunk/Common/Page.php
r607 r627 112 112 $Output .= '<div id="Footer">'. 113 113 '<i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' | '. 114 ' Verze: '.$Revision.' ('. HumanDate($ReleaseTime).') |';114 ' Verze: '.$Revision.' ('.$this->System->HumanDate($ReleaseTime).') |'; 115 115 if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time'). 116 116 ' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |'; -
trunk/Common/Setup/Updates.php
r623 r627 536 536 } 537 537 538 function UpdateTo627($Manager) 539 { 540 $Manager->Execute('ALTER TABLE `FinanceInvoice` CHANGE `TimeCreation` `Time` DATETIME NOT NULL DEFAULT "0000-00-00 00:00:00";'); 541 $Manager->Execute('ALTER TABLE `FinanceYear` ADD `Closed` INT NOT NULL ;'); 542 } 543 538 544 class Updates 539 545 { … … 569 575 615 => array('Revision' => 619, 'Function' => 'UpdateTo619'), 570 576 619 => array('Revision' => 620, 'Function' => 'UpdateTo620'), 577 620 => array('Revision' => 627, 'Function' => 'UpdateTo627'), 571 578 )); 572 579 }
Note:
See TracChangeset
for help on using the changeset viewer.