diff options
| author | michael pereira | 2011-04-26 17:54:33 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-26 17:54:33 +0200 |
| commit | 89b9d612232e2d3be15ce5a708bfc9dbbaab318f (patch) | |
| tree | 703754b757ccfca4a8e0385987900caf4cff99af /application/modules/user | |
| parent | config fix (diff) | |
| parent | Quickfix new Client (diff) | |
| download | pbs2-89b9d612232e2d3be15ce5a708bfc9dbbaab318f.tar.gz pbs2-89b9d612232e2d3be15ce5a708bfc9dbbaab318f.tar.xz pbs2-89b9d612232e2d3be15ce5a708bfc9dbbaab318f.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user')
| -rw-r--r-- | application/modules/user/controllers/SessionController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/user/controllers/SessionController.php b/application/modules/user/controllers/SessionController.php index 91b6dbd..b2fe874 100644 --- a/application/modules/user/controllers/SessionController.php +++ b/application/modules/user/controllers/SessionController.php @@ -44,9 +44,9 @@ class User_SessionController extends Zend_Controller_Action $membershipMapper = new Application_Model_MembershipMapper(); $personMapper = new Application_Model_PersonMapper(); - $bootisos = $bootisoMapper->findBy(array('groupID',$this->membership->getGroupID())); + $bootisos = $bootisoMapper->findBy(array('groupID'=>$this->membership->getGroupID())); foreach($bootisos as $bootiso){ - $sessions = $sessionMapper->findBy(array('bootisoID',$bootiso->getID())); + $sessions = $sessionMapper->findBy(array('bootisoID'=>$bootiso->getID())); foreach($sessions as $session){ #echo $session->getBootosID(); if($session->getBootosID() != ''){ |
