diff options
| author | Simon | 2011-04-11 10:40:42 +0200 |
|---|---|---|
| committer | Simon | 2011-04-11 10:40:42 +0200 |
| commit | de707b3d0199905b201b09d842942845e70781e4 (patch) | |
| tree | b4ee273ac7e27fd1125bcc1367b01fac2d0b06f9 /application/modules/user/controllers | |
| parent | Suche in configs gefixxt (diff) | |
| download | pbs2-de707b3d0199905b201b09d842942845e70781e4.tar.gz pbs2-de707b3d0199905b201b09d842942845e70781e4.tar.xz pbs2-de707b3d0199905b201b09d842942845e70781e4.zip | |
Suche in Bootmenu gefixxt
Diffstat (limited to 'application/modules/user/controllers')
| -rw-r--r-- | application/modules/user/controllers/BootmenuController.php | 4 |
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(); |
