Changeset 93 for trunk/www/Application/View/Page.php
- Timestamp:
- Aug 15, 2013, 11:17:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/View/Page.php
r78 r93 102 102 function GetOutput($Content) 103 103 { 104 global $Config;105 106 104 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle). 107 105 $this->CenterPanel($Content); 108 106 $Output .= $this->ShowFooter(); 109 if($ Config['Web']['FormatHTML'] == true) echo($this->FormatOutput($Output));107 if($this->Config['Web']['FormatHTML'] == true) echo($this->FormatOutput($Output)); 110 108 else echo($Output); 111 109 } … … 123 121 } 124 122 } 125 126 ?>
Note:
See TracChangeset
for help on using the changeset viewer.