summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/PoolController.php
diff options
context:
space:
mode:
authormichael pereira2011-04-01 17:05:10 +0200
committermichael pereira2011-04-01 17:05:10 +0200
commitf2bd46dc2a8de6286c7501ba1bdcb6f2fd450d2d (patch)
treea22835b3c8a2444e2f59658ba6d8a09b70fffde4 /application/modules/user/controllers/PoolController.php
parentBootmenuController (diff)
parentBugfixing(Pagination) im Pool-Controller (diff)
downloadpbs2-f2bd46dc2a8de6286c7501ba1bdcb6f2fd450d2d.tar.gz
pbs2-f2bd46dc2a8de6286c7501ba1bdcb6f2fd450d2d.tar.xz
pbs2-f2bd46dc2a8de6286c7501ba1bdcb6f2fd450d2d.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user/controllers/PoolController.php')
-rw-r--r--application/modules/user/controllers/PoolController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/modules/user/controllers/PoolController.php b/application/modules/user/controllers/PoolController.php
index bdf23b3..d5cab09 100644
--- a/application/modules/user/controllers/PoolController.php
+++ b/application/modules/user/controllers/PoolController.php
@@ -110,7 +110,7 @@ class User_PoolController extends Zend_Controller_Action
$this->view->addpool = $addfilterform;
}else {
$addpoolform = new user_Form_Pool(array(
- 'buttontext' => 'Create Pool'
+ 'buttontext' => 'Create Pool',
'page' => $this->page),$_POST);
if ($addpoolform->isValid($_POST)) {
try{
@@ -167,7 +167,7 @@ class User_PoolController extends Zend_Controller_Action
if($pool->getGroupID() == $this->membership->getGroupID()){
$poolArray = $pool->toArray();
$editpool = new user_Form_Pool(array(
- 'buttontext' => 'Edit Pool'
+ 'buttontext' => 'Edit Pool',
'page' => $this->page));
$editpool->populate($poolArray);
$this->view->editpool = $editpool;
@@ -177,7 +177,7 @@ class User_PoolController extends Zend_Controller_Action
}
}else {
$editpoolform = new user_Form_Pool(array(
- 'buttontext' => 'Edit Pool'
+ 'buttontext' => 'Edit Pool',
'page' => $this->page),$_POST);
if ($editpoolform->isValid($_POST)) {
try{