Skip to content

Commit 1bdb429

Browse files
authored
[5.4] Fix missing options in pagination (joomla#46219)
* Fix missing 200 and 500 options in pagination
1 parent 0539c3a commit 1bdb429

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libraries/src/Pagination/Pagination.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,8 @@ public function getLimitBox()
570570

571571
$limits[] = HTMLHelper::_('select.option', '50', Text::_('J50'));
572572
$limits[] = HTMLHelper::_('select.option', '100', Text::_('J100'));
573+
$limits[] = HTMLHelper::_('select.option', '200', Text::_('J200'));
574+
$limits[] = HTMLHelper::_('select.option', '500', Text::_('J500'));
573575
$limits[] = HTMLHelper::_('select.option', '0', Text::_('JALL'));
574576

575577
$selected = $this->viewall ? 0 : $this->limit;

0 commit comments

Comments
 (0)