diff options
| author | Simon | 2011-03-19 10:32:19 +0100 |
|---|---|---|
| committer | Simon | 2011-03-19 10:32:19 +0100 |
| commit | 4dedc8c5b49466b82cf453536b3f224d57a0c710 (patch) | |
| tree | 846db54e9c1661fbbc42df3f73eab79d6e690f2e /application/modules/user/controllers/ClientController.php | |
| parent | FilterEvaluate an Session angepasst (diff) | |
| download | pbs2-4dedc8c5b49466b82cf453536b3f224d57a0c710.tar.gz pbs2-4dedc8c5b49466b82cf453536b3f224d57a0c710.tar.xz pbs2-4dedc8c5b49466b82cf453536b3f224d57a0c710.zip | |
Bei Auth Controller zum testen MembershipID wählbar
Pool zeigt nurnoch freie Clients der eigenen Gruppe an
Diffstat (limited to 'application/modules/user/controllers/ClientController.php')
| -rw-r--r-- | application/modules/user/controllers/ClientController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/user/controllers/ClientController.php b/application/modules/user/controllers/ClientController.php index 4bb2b35..d3d7573 100644 --- a/application/modules/user/controllers/ClientController.php +++ b/application/modules/user/controllers/ClientController.php @@ -38,7 +38,7 @@ class User_ClientController extends Zend_Controller_Action $clientMapper = new Application_Model_ClientMapper(); $clientsInGroup = $clientMapper->findBy('groupID',$this->membership->getGroupID()); - # print_a($clientsInGroup); + #print_a($clientsInGroup); $this->view->clients = $clientsInGroup; @@ -67,7 +67,7 @@ class User_ClientController extends Zend_Controller_Action $client->setGroupID($this->membership->getGroupID()); $clientmapper = new Application_Model_ClientMapper(); $clientmapper->save($client); - $this->_redirect('/user/client/addresult/ok'); + $this->_redirect('/user/client/index/addresult/ok'); } $this->view->addclient = $addclient; } |
