summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/ConfigController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/controllers/ConfigController.php')
-rw-r--r--application/modules/user/controllers/ConfigController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/user/controllers/ConfigController.php b/application/modules/user/controllers/ConfigController.php
index 3618901..f00d1bc 100644
--- a/application/modules/user/controllers/ConfigController.php
+++ b/application/modules/user/controllers/ConfigController.php
@@ -57,9 +57,9 @@ class user_ConfigController extends Zend_Controller_Action
if(true){
//TODO nur Configs von Admins
- $this->view->configlist = $this->configMapper->findBy('groupID', $this->membership->getGroupID());
+ $this->view->configlist = $this->configMapper->findBy(array('groupID' => $this->membership->getGroupID()));
}else{
- $this->view->configlist = $this->configMapper->findBy('membershipID', $this->membership->getID());
+ $this->view->configlist = $this->configMapper->findBy(array('membershipID' => $this->membership->getID()));
}
foreach ($this->view->configlist as $config){