Changeset 479 for trunk/Common
- Timestamp:
- Feb 5, 2013, 9:45:44 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r477 r479 1 1 <?php 2 3 $Revision = 2 4 3 5 $ConfigFileName = dirname(__FILE__).'/../config.php'; … … 294 296 295 297 // Register new modules 296 $System->ModuleManager->RegisterModule(new M eteostation($System));297 $System->ModuleManager->RegisterModule(new Portal($System));298 $System->ModuleManager->RegisterModule(new IS($System));299 $System->ModuleManager->RegisterModule(new Network($System));300 $System->ModuleManager->RegisterModule(new TV($System));298 $System->ModuleManager->RegisterModule(new ModuleMeteostation($System)); 299 $System->ModuleManager->RegisterModule(new ModulePortal($System)); 300 $System->ModuleManager->RegisterModule(new ModuleIS($System)); 301 $System->ModuleManager->RegisterModule(new ModuleNetwork($System)); 302 $System->ModuleManager->RegisterModule(new ModuleTV($System)); 301 303 $System->ModuleManager->RegisterModule(new ModuleOpeningHours($System)); 302 304 $System->ModuleManager->RegisterModule(new ModuleMap($System)); -
trunk/Common/Page.php
r473 r479 185 185 $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output; 186 186 $Output .= $this->ShowFooter(); 187 if($this->FormatHTML == true) echo($this->FormatOutput($Output));187 if($this->FormatHTML == true) $Output = $this->FormatOutput($Output); 188 188 } 189 189 echo($Output);
Note:
See TracChangeset
for help on using the changeset viewer.