Ignore:
Timestamp:
Aug 15, 2013, 11:17:26 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: System variable as parameter to constructors of descendents of Module class.
  • Removed: End PHP mark "?>" from all files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Application/View/Page.php

    r78 r93  
    102102  function GetOutput($Content)
    103103  {
    104     global $Config;
    105    
    106104    $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).
    107105      $this->CenterPanel($Content);
    108106    $Output .= $this->ShowFooter();
    109     if($Config['Web']['FormatHTML'] == true) echo($this->FormatOutput($Output));
     107    if($this->Config['Web']['FormatHTML'] == true) echo($this->FormatOutput($Output));
    110108    else echo($Output);
    111109  }
     
    123121  }
    124122}
    125 
    126 ?>
Note: See TracChangeset for help on using the changeset viewer.