diff options
| author | Simon | 2011-04-01 17:04:32 +0200 |
|---|---|---|
| committer | Simon | 2011-04-01 17:04:32 +0200 |
| commit | 08827c1d34d0b8d67cb6b127cc9336ef291ad659 (patch) | |
| tree | d5b4706dfd6ebcbb22cf842de627bbb0d8fa2019 /application/modules/user | |
| parent | pagination in Bootmenu (diff) | |
| download | pbs2-08827c1d34d0b8d67cb6b127cc9336ef291ad659.tar.gz pbs2-08827c1d34d0b8d67cb6b127cc9336ef291ad659.tar.xz pbs2-08827c1d34d0b8d67cb6b127cc9336ef291ad659.zip | |
Bugfixing(Pagination) im Pool-Controller
Diffstat (limited to 'application/modules/user')
| -rw-r--r-- | application/modules/user/controllers/PoolController.php | 6 |
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{ |
