diff options
| author | Simon | 2011-04-29 10:18:39 +0200 |
|---|---|---|
| committer | Simon | 2011-04-29 10:18:39 +0200 |
| commit | b87c06378211d1f6b01793148617bbf7861a2c4f (patch) | |
| tree | 1f32de7872b505d1dce1fce53be3039e4cc76521 /application/modules/user/controllers/SessionController.php | |
| parent | freeclients werden direkt mit sql gesucht (diff) | |
| download | pbs2-b87c06378211d1f6b01793148617bbf7861a2c4f.tar.gz pbs2-b87c06378211d1f6b01793148617bbf7861a2c4f.tar.xz pbs2-b87c06378211d1f6b01793148617bbf7861a2c4f.zip | |
Paar Mapper angepasst
Diffstat (limited to 'application/modules/user/controllers/SessionController.php')
| -rw-r--r-- | application/modules/user/controllers/SessionController.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/application/modules/user/controllers/SessionController.php b/application/modules/user/controllers/SessionController.php index b2fe874..0e32e48 100644 --- a/application/modules/user/controllers/SessionController.php +++ b/application/modules/user/controllers/SessionController.php @@ -95,10 +95,10 @@ class User_SessionController extends Zend_Controller_Action // Pagination $pagination = new Pbs_Pagination(); - $pagination->setPerPage(10); - $pagination->setElement($mySessions); - $pagination->setRequestPage($this->_request->getParam('page')); - $pagination->setPageUrl('/user/session/index'.((isset($this->view->search))?'/search/'.$this->view->search:'')); + $pagination->setPerPage(10) + ->setElement($mySessions) + ->setRequestPage($this->_request->getParam('page')) + ->setPageUrl('/user/session/index'.((isset($this->view->search))?'/search/'.$this->view->search:'')); $mySessions = $pagination->getElements(); $this->view->pagination = $pagination->pagination(); |
