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/MangosDebug.php

    r78 r93  
    88  var $MaxMangosThreadCount = 12;
    99 
    10   function __construct($Database)
     10  function __construct($System)
    1111  {
    12     $this->Database = $Database;
     12    parent::__construct($System);
    1313  }
    1414 
    1515  function ProcessLog($RealmId)
    1616  {
    17     global $Config;
    18    
    1917    $Output = '';
    2018    // Read server Id from first parameter
    21     $Realm = new Realm($this->Database, $RealmId);
     19    $Realm = new Realm($this->System, $RealmId);
    2220   
    2321    $LogDir = '../realm/'.$RealmId.'/log/';
     
    104102  }
    105103}
    106 
    107 ?>
Note: See TracChangeset for help on using the changeset viewer.