summaryrefslogtreecommitdiffstats
path: root/application/controllers/ResourceController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/controllers/ResourceController.php')
-rwxr-xr-xapplication/controllers/ResourceController.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php
index 6dd5278..aba1150 100755
--- a/application/controllers/ResourceController.php
+++ b/application/controllers/ResourceController.php
@@ -437,6 +437,10 @@ class ResourceController extends Zend_Controller_Action
$bootmenu->setID($bootmenuid);
$bootmenuentries = new Application_Model_BootMenuEntries();
+ $bootosMapper = new Application_Model_BootOsMapper();
+ $bootos = new Application_Model_BootOs();
+ $bootosMapper->find($params['bootosID'], $bootos);
+ $params['title'] = $bootos->getTitle();
$bootmenuentries->setOptions($params);
$bootmenuentries->setBootmenuID($bootmenu->getID());
$bootmenuentriesID = $bootmenuEntriesMapper->save($bootmenuentries);