summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/SessionController.php
diff options
context:
space:
mode:
authorSimon2011-04-29 10:18:39 +0200
committerSimon2011-04-29 10:18:39 +0200
commitb87c06378211d1f6b01793148617bbf7861a2c4f (patch)
tree1f32de7872b505d1dce1fce53be3039e4cc76521 /application/modules/user/controllers/SessionController.php
parentfreeclients werden direkt mit sql gesucht (diff)
downloadpbs2-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.php8
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();