summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorBjörn Geiger2011-10-06 19:00:23 +0200
committerBjörn Geiger2011-10-06 19:00:23 +0200
commitc2c9e6f7a2e322f888a7372bf4f19bbdb0b20964 (patch)
tree661aaf01b971406ff8db2cd78e456edfda840e8e /application
parentkleinigkeit (diff)
downloadpbs2-c2c9e6f7a2e322f888a7372bf4f19bbdb0b20964.tar.gz
pbs2-c2c9e6f7a2e322f888a7372bf4f19bbdb0b20964.tar.xz
pbs2-c2c9e6f7a2e322f888a7372bf4f19bbdb0b20964.zip
kleine Korrektur
Diffstat (limited to 'application')
-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);