From fd8824e157769ba7d468ec931cefdf4813964a98 Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Tue, 1 Sep 2015 17:42:33 +0200 Subject: [PATCH] Cleanup --- .../controllers/AcknowledgementController.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/monitoring/application/controllers/AcknowledgementController.php b/modules/monitoring/application/controllers/AcknowledgementController.php index a229a22a3..55e003c49 100644 --- a/modules/monitoring/application/controllers/AcknowledgementController.php +++ b/modules/monitoring/application/controllers/AcknowledgementController.php @@ -52,14 +52,14 @@ class Monitoring_AcknowledgementController extends Controller $this->filterQuery($query); $this->view->acknowledgements = $query; - $this->setupLimitControl(); - $this->setupPaginationControl($this->view->acknowledgements); - $this->setupSortControl(array( - 'entry_time' => $this->translate('Entry Time'), - 'end_time' => $this->translate('End Time'), - 'state' => $this->translate('Object State'), - 'author_name' => $this->translate('Author Name') - ), $query); + $this->setupLimitControl() + ->setupPaginationControl($this->view->acknowledgements) + ->setupSortControl(array( + 'entry_time' => $this->translate('Entry Time'), + 'end_time' => $this->translate('End Time'), + 'state' => $this->translate('Object State'), + 'author_name' => $this->translate('Author Name') + ), $this->view->acknowledgements); } /**