Changeset 93 for trunk/www/Application/Model/MangosDebug.php
- Timestamp:
- Aug 15, 2013, 11:17:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/Model/MangosDebug.php
r78 r93 8 8 var $MaxMangosThreadCount = 12; 9 9 10 function __construct($ Database)10 function __construct($System) 11 11 { 12 $this->Database = $Database;12 parent::__construct($System); 13 13 } 14 14 15 15 function ProcessLog($RealmId) 16 16 { 17 global $Config;18 19 17 $Output = ''; 20 18 // Read server Id from first parameter 21 $Realm = new Realm($this-> Database, $RealmId);19 $Realm = new Realm($this->System, $RealmId); 22 20 23 21 $LogDir = '../realm/'.$RealmId.'/log/'; … … 104 102 } 105 103 } 106 107 ?>
Note:
See TracChangeset
for help on using the changeset viewer.