summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/controllers')
-rw-r--r--application/modules/user/controllers/BootmenuController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/user/controllers/BootmenuController.php b/application/modules/user/controllers/BootmenuController.php
index 58da07e..79c3ee7 100644
--- a/application/modules/user/controllers/BootmenuController.php
+++ b/application/modules/user/controllers/BootmenuController.php
@@ -147,7 +147,7 @@ class user_BootmenuController extends Zend_Controller_Action
$this->_redirect('/user/bootmenu/index/page/'.$this->page.'/modifyresult/forbidden');
$bootmenu = new Application_Model_BootMenu();
- $bootmenu = $this->bootmenuMapper->find($bootmenuID);
+ $this->bootmenuMapper->find($bootmenuID, $bootmenu);
if($this->membership->getGroupID() != $bootmenu->getGroupID())
$this->_redirect('/user/bootmenu/index/page/'.$this->page.'/modifyresult/forbidden');
@@ -187,7 +187,7 @@ class user_BootmenuController extends Zend_Controller_Action
}
- $this->view->editbootmenuForm = $editbootmenuForm;
+ $this->view->bootmenuForm = $bootmenuForm;
}
public function deletebootmenuAction()