diff options
author | Michael Neves | 2012-06-27 17:53:41 +0200 |
---|---|---|
committer | Michael Neves | 2012-06-27 17:53:41 +0200 |
commit | 436e5a75bc1ac464e28fcd050adc04887f3e6fe4 (patch) | |
tree | 30c4afb101ec364c0170b790d28ee4639638d101 | |
parent | ipxe resourcecontroller add bootSystem Function (diff) | |
download | pbs2-436e5a75bc1ac464e28fcd050adc04887f3e6fe4.tar.gz pbs2-436e5a75bc1ac464e28fcd050adc04887f3e6fe4.tar.xz pbs2-436e5a75bc1ac464e28fcd050adc04887f3e6fe4.zip |
ipxe resourcecontroller add bootSystem Function
-rw-r--r-- | application/modules/ipxe/controllers/ResourceController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/modules/ipxe/controllers/ResourceController.php b/application/modules/ipxe/controllers/ResourceController.php index ffa2ae8..0d4d71b 100644 --- a/application/modules/ipxe/controllers/ResourceController.php +++ b/application/modules/ipxe/controllers/ResourceController.php @@ -215,6 +215,7 @@ class Ipxe_ResourceController extends Zend_Controller_Action { if(isset($bootmenuntryID) && isset($this->session)) { //TODO check if allowed + $sessionMapper = new Application_Model_SessionMapper(); $bootmenuentriesMapper = new Application_Model_BootMenuEntriesMapper(); $bootmenuentry = new Application_Model_BootMenuEntries(); $bootmenuentriesMapper->find($bootmenuntryID, $bootmenuentry); |