Changeset 348 for trunk/Modules/page.php
- Timestamp:
- Jan 17, 2012, 9:39:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/page.php
r343 r348 6 6 var $FormatHTML = false; 7 7 var $ShowRuntimeInfo = false; 8 var $SimplePage = false; 8 9 var $PathTree = array('Rozcestník', 9 10 'index.php' => '', … … 175 176 { 176 177 $Output = $this->Show(); 177 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 178 $Output .= $this->ShowFooter(); 178 if(!$this->SimplePage) 179 { 180 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 181 $Output .= $this->ShowFooter(); 182 } 179 183 if($this->FormatHTML == true) echo($this->FormatOutput($Output)); 180 184 else echo($Output);
Note:
See TracChangeset
for help on using the changeset viewer.