Changeset 386 for trunk/Common/Page.php
- Timestamp:
- Jan 24, 2012, 3:17:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r385 r386 36 36 foreach($this->NavigationPath as $Index => $PathItem) 37 37 { 38 if($ URL!= '') $URL .= '/'.$PathItem['URL'];38 if($PathItem['URL'] != '') $URL .= '/'.$PathItem['URL']; 39 39 if($Index > 0) $Navigation .= ' > '; 40 40 $Navigation .= '<a href="'.$this->System->Config['Web']['RootFolder']. 41 $URL.' ">'.$PathItem['Name'].'</a>';41 $URL.'/">'.$PathItem['Name'].'</a>'; 42 42 } 43 43 … … 72 72 $Output = '<div id="Footer"> 73 73 <i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' |'; 74 if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';74 if($this->ShowRuntimeInfo) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |'; 75 75 $Output .= '</i></div></body></html>'; 76 76 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.