Using paginated list of items, select 2nd or subsequent page and then select first page
Page displayed should show as per selection
Return to first page has no effect.
Shows up in site running the crmery component. On a 'company' page with enough contacts to cause pagination to be invoked.
Problem is caused by test in /libraries/src/Router/SiteRouter.php in Joomla 3.8.1 and /libraries/cms/router/site.php previous versions. in function processParseRules the following test (line 600 in the 3.8.1 version):
if ($start = $uri->getVar('start'))
will ignore the start value if it is zero. Replacing with:
if (($start = $uri->getVar('start')) !== null)
Allows zero as a valid value and fixes the problem.
Status | New | ⇒ | Information Required |
If this Issue get no Response, it will be closed at 26th November 2017.
Closed_By | franz-wohlkoenig | ⇒ | joomla-cms-bot |
Status | Information Required | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-11-26 06:20:26 |
Closed_By | ⇒ | franz-wohlkoenig |
Set to "closed" on behalf of @franz-wohlkoenig by The JTracker Application at issues.joomla.org/joomla-cms/18247
This has been closed due to lack of response to the requests above – it can always be reopened.
@nigel-at-vividfish Please try to reproduce this on core components.