Actions
Bug #3757
closedJ3.0: Userlist paging with SEF ON broken
Description
Userlist paging always shows first page results.
As described here:
https://www.joomlapolis.com/forum/153-professional-member-support/213837-sef-breaks-paging-in-userlists-on-joomla-30#213839
Updated by beat about 12 years ago
Joomla 3.0 introduces a wonderful new feature: Break $_GET variables: copy limitstart to start, and unset limitstart:
protected function _processBuildRules($uri)
...
if ($this->_mode == JROUTER_MODE_SEF && $route)
{
$app = JApplication::getInstance('site');
if ($limitstart = $uri->getVar('limitstart'))
{
$uri->setVar('start', (int) $limitstart);
$uri->delVar('limitstart');
}
}
...
So &limitstart=... gets automatically converted to &start=... but only with SEF on!
!!!!!!!
Updated by beat about 12 years ago
Decision has been taken to workaround this Joomla 3.0-design bug:
When needing limitstart, we will call a new CB function getPagesLimitStart( $arr ) instead of getting it from params.
Updated by beat about 12 years ago
- Subject changed from Userlist paging with SEF on on Joomla 3.0 broken to J3.0: Userlist paging with SEF ON broken
Updated by beat about 12 years ago
- Status changed from New to Closed
- Assignee set to beat
- Target version set to CB 1.9
- Estimated time set to 1:00 h
Fixed in r1911 .
Actions