summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/BootmenuController.php
diff options
context:
space:
mode:
authorSimon2011-04-11 10:40:42 +0200
committerSimon2011-04-11 10:40:42 +0200
commitde707b3d0199905b201b09d842942845e70781e4 (patch)
treeb4ee273ac7e27fd1125bcc1367b01fac2d0b06f9 /application/modules/user/controllers/BootmenuController.php
parentSuche in configs gefixxt (diff)
downloadpbs2-de707b3d0199905b201b09d842942845e70781e4.tar.gz
pbs2-de707b3d0199905b201b09d842942845e70781e4.tar.xz
pbs2-de707b3d0199905b201b09d842942845e70781e4.zip
Suche in Bootmenu gefixxt
Diffstat (limited to 'application/modules/user/controllers/BootmenuController.php')
-rw-r--r--application/modules/user/controllers/BootmenuController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/application/modules/user/controllers/BootmenuController.php b/application/modules/user/controllers/BootmenuController.php
index ed2239b..754c45d 100644
--- a/application/modules/user/controllers/BootmenuController.php
+++ b/application/modules/user/controllers/BootmenuController.php
@@ -8,6 +8,7 @@ class user_BootmenuController extends Zend_Controller_Action
protected $membershipMapper;
protected $membership;
protected $page;
+ protected $type;
public function init()
{
@@ -109,7 +110,8 @@ class user_BootmenuController extends Zend_Controller_Action
// Search
$search = $this->_request->getParam('search');
$mySearch = new Pbs_Search();
- $mySearch->setSearchTerm($search);
+ $mySearch->setSearchTerm($search);
+ $mySearch->setType($this->type);
$mySearch->setModule('bootmenu');
if($search != ''){
$this->view->search = $mySearch->getSearchTerm();