This commit is contained in:
Matthias Jentsch 2015-09-01 17:42:33 +02:00
parent bcdbf413a6
commit fd8824e157
1 changed files with 8 additions and 8 deletions

View File

@ -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);
}
/**