Changeset 566 for trunk/includes/Page.php
- Timestamp:
- Aug 20, 2013, 11:37:30 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Page.php
r563 r566 236 236 var $System; 237 237 var $Database; 238 var $RawPage; 238 239 239 240 function __construct($System) 240 241 { 241 242 $this->System = &$System; 242 $this->Database = &$System->Database; 243 $this->Database = &$System->Database; 244 $this->RawPage = false; 243 245 } 244 246 … … 251 253 { 252 254 $Output = $this->Show(); 253 $Output = ShowPage($Output); 255 if($this->RawPage == false) $Output = ShowPage($Output); 256 else echo($Output); 254 257 return($Output); 255 258 }
Note:
See TracChangeset
for help on using the changeset viewer.