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/Controller/Server.php

    r80 r93  
    104104  function UnLock()
    105105  {
    106     $Model = new Server($this->Database, $_GET['Id']);
     106    $Model = new Server($this->System, $_GET['Id']);
    107107    $Model->UnLock();
    108108  }   
     
    110110  function Lock()
    111111  {
    112     $Model = new Server($this->Database, $_GET['Id']);
     112    $Model = new Server($this->System, $_GET['Id']);
    113113    $Model->Lock();
    114114  }     
    115115}
    116 
    117 ?>
Note: See TracChangeset for help on using the changeset viewer.