?
avatar nigel-at-vividfish
nigel-at-vividfish
5 Oct 2017

Steps to reproduce the issue

Using paginated list of items, select 2nd or subsequent page and then select first page

Expected result

Page displayed should show as per selection

Actual result

Return to first page has no effect.

System information (as much as possible)

Shows up in site running the crmery component. On a 'company' page with enough contacts to cause pagination to be invoked.

Additional comments

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.

avatar nigel-at-vividfish nigel-at-vividfish - open - 5 Oct 2017
avatar joomla-cms-bot joomla-cms-bot - labeled - 5 Oct 2017
avatar wojsmol
wojsmol - comment - 9 Oct 2017

@nigel-at-vividfish Please try to reproduce this on core components.

avatar franz-wohlkoenig franz-wohlkoenig - change - 9 Oct 2017
Status New Information Required
avatar franz-wohlkoenig
franz-wohlkoenig - comment - 22 Oct 2017

If this Issue get no Response, it will be closed at 26th November 2017.

avatar joomla-cms-bot joomla-cms-bot - change - 26 Nov 2017
Closed_By franz-wohlkoenig joomla-cms-bot
avatar joomla-cms-bot joomla-cms-bot - close - 26 Nov 2017
avatar franz-wohlkoenig franz-wohlkoenig - change - 26 Nov 2017
Status Information Required Closed
Closed_Date 0000-00-00 00:00:00 2017-11-26 06:20:26
Closed_By franz-wohlkoenig
avatar joomla-cms-bot
joomla-cms-bot - comment - 26 Nov 2017
avatar franz-wohlkoenig
franz-wohlkoenig - comment - 26 Nov 2017

This has been closed due to lack of response to the requests above – it can always be reopened.

Add a Comment

Login with GitHub to post a comment