Changeset 471 for trunk/Common/Page.php
- Timestamp:
- Dec 30, 2012, 10:09:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Page.php
r453 r471 6 6 var $FormatHTML = false; 7 7 var $ShowRuntimeInfo = false; 8 var $ClearPage = false; 8 9 var $PathTree = array('Rozcestník', 9 10 'index.php' => '', … … 178 179 { 179 180 $Output = $this->Show(); 180 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 181 $Output .= $this->ShowFooter(); 182 if($this->FormatHTML == true) echo($this->FormatOutput($Output)); 183 else echo($Output); 181 if($this->ClearPage == false) 182 { 183 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 184 $Output .= $this->ShowFooter(); 185 if($this->FormatHTML == true) echo($this->FormatOutput($Output)); 186 } 187 echo($Output); 184 188 } 185 189
Note:
See TracChangeset
for help on using the changeset viewer.