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/Model/History.php

    r78 r93  
    1111  var $Resolution = 1000;
    1212 
    13   function __construct($Database, $ServerId, $MeasureId)
     13  function __construct($System, $ServerId, $MeasureId)
    1414  {
    15     $this->Database = $Database;
     15    parent::__construct($System);
    1616    $this->ServerId = $ServerId;
    1717    $this->MeasureId = $MeasureId;
     
    5959  }
    6060}
    61 
    62 ?>
Note: See TracChangeset for help on using the changeset viewer.