diff options
| author | michael pereira | 2011-05-05 12:42:11 +0200 |
|---|---|---|
| committer | michael pereira | 2011-05-05 12:42:11 +0200 |
| commit | 094fd7cd3b869208b94936732e6e95d2d484d291 (patch) | |
| tree | 4ec032cf0aa55bbd859df62bd10d56b4d501efce /application/modules/user/controllers/SessionController.php | |
| parent | postinit script in view ausgelagert (diff) | |
| parent | Paar Mapper angepasst (diff) | |
| download | pbs2-094fd7cd3b869208b94936732e6e95d2d484d291.tar.gz pbs2-094fd7cd3b869208b94936732e6e95d2d484d291.tar.xz pbs2-094fd7cd3b869208b94936732e6e95d2d484d291.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
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(); |
