Changeset 93 for trunk/www/Application/Controller/Server.php
- Timestamp:
- Aug 15, 2013, 11:17:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/Controller/Server.php
r80 r93 104 104 function UnLock() 105 105 { 106 $Model = new Server($this-> Database, $_GET['Id']);106 $Model = new Server($this->System, $_GET['Id']); 107 107 $Model->UnLock(); 108 108 } … … 110 110 function Lock() 111 111 { 112 $Model = new Server($this-> Database, $_GET['Id']);112 $Model = new Server($this->System, $_GET['Id']); 113 113 $Model->Lock(); 114 114 } 115 115 } 116 117 ?>
Note:
See TracChangeset
for help on using the changeset viewer.