mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-22 19:09:00 +00:00
Fixed the items per page not being used Fixes #296
Signed-off-by: Roland Dalmulder <contact@rolandd.com>
This commit is contained in:
parent
9a14a7ed5a
commit
6ac62486ea
@ -110,7 +110,7 @@ class DisplayController extends AbstractController
|
||||
$state->set('filter.npm', $app->getUserStateFromRequest($this->context . '.filter.npm', 'filter_npm', ''));
|
||||
|
||||
// Pre-fill the limits.
|
||||
$limit = $app->getUserStateFromRequest('global.list.limit', 'limit', $app->get('list_limit', 20), 'uint');
|
||||
$limit = $app->getUserStateFromRequest('global.list.limit', 'limit', $app->input->get('list_limit', 20), 'uint');
|
||||
$state->set('list.limit', $limit);
|
||||
|
||||
$fullOrdering = $app->getUserStateFromRequest($this->context . '.fullorder', 'list_fullordering', $this->defaultFullOrdering);
|
||||
|
Loading…
Reference in New Issue
Block a user