Changeset 93 for trunk/www/Application/View/Emulator.php
- Timestamp:
- Aug 15, 2013, 11:17:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/View/Emulator.php
r92 r93 36 36 function ItemList() 37 37 { 38 global $Config;39 40 38 $Output = '<h4>Seznam verzí emulátoru</h4>'; 41 39 $Table = new Table($this->ItemListFormClass, $this->System); … … 59 57 { 60 58 $Id = $_GET['Id']; 61 //$Server = new Server($this-> Database, $Id);59 //$Server = new Server($this->System, $Id); 62 60 $Output = '<h4>Podrobnosti emulátoru</h4>'; 63 61 $Form = new Form($this->System, $this->ItemFormClass); … … 65 63 $Output .= $Form->ShowTable(); 66 64 $Output .= '<div style="text-align: center">'; 67 $Emulator = new Emulator($this-> Database, $Id);65 $Emulator = new Emulator($this->System, $Id); 68 66 if($this->System->Modules['Permission']->Check('Emulator', 'Download', $Emulator->Id)) 69 67 { … … 106 104 if(array_key_exists('Id', $_GET)) 107 105 { 108 $Emulator = new Emulator($this-> Database, $_GET['Id']);106 $Emulator = new Emulator($this->System, $_GET['Id']); 109 107 if($this->System->Modules['Permission']->Check('Emulator', 'Download', $Emulator->Id)) 110 108 { … … 122 120 if(array_key_exists('Id', $_GET)) 123 121 { 124 $Emulator = new Emulator($this-> Database, $_GET['Id']);122 $Emulator = new Emulator($this->System, $_GET['Id']); 125 123 if($this->System->Modules['Permission']->Check('Emulator', 'Download', $Emulator->Id)) 126 124 { … … 134 132 } 135 133 } 136 137 ?>
Note:
See TracChangeset
for help on using the changeset viewer.