summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/ClientController.php
diff options
context:
space:
mode:
authorSimon Franz2011-03-16 17:13:02 +0100
committerSimon Franz2011-03-16 17:13:02 +0100
commitaf06cbe6a477a52fa99a2d1b047a9c3e8b6b22f9 (patch)
tree480ab8929158dc973e375ce99798829e9398ff75 /application/modules/user/controllers/ClientController.php
parentClientController geändert, Forms können in FBGui und User nicht benutzt werden (diff)
downloadpbs2-af06cbe6a477a52fa99a2d1b047a9c3e8b6b22f9.tar.gz
pbs2-af06cbe6a477a52fa99a2d1b047a9c3e8b6b22f9.tar.xz
pbs2-af06cbe6a477a52fa99a2d1b047a9c3e8b6b22f9.zip
Benutzung von Form in Modulen nutzbar, editclient funktioniert, Mac wird geparsed
Diffstat (limited to 'application/modules/user/controllers/ClientController.php')
-rw-r--r--application/modules/user/controllers/ClientController.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/application/modules/user/controllers/ClientController.php b/application/modules/user/controllers/ClientController.php
index f5f1810..bae6494 100644
--- a/application/modules/user/controllers/ClientController.php
+++ b/application/modules/user/controllers/ClientController.php
@@ -63,8 +63,7 @@ class User_ClientController extends Zend_Controller_Action
$mapper = new Application_Model_ClientMapper();
$mapper->find($clientID,$client);
- if($client->getGroupID() == $this->membership->getGroupID()){
- # print_a($this);die();
+ if($client->getGroupID() == $this->membership->getGroupID()){
$editclient = new user_Form_Client(array('buttontext' => 'Edit Client'));
$editclient->populate($client->toArray());
$this->view->editclient = $editclient;