Bug #3757
closed
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!
!!!!!!!
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.
- Subject changed from Userlist paging with SEF on on Joomla 3.0 broken to J3.0: Userlist paging with SEF ON broken
- Status changed from New to Closed
- Assignee set to beat
- Target version set to CB 1.9
- Estimated time set to 1:00 h
- % Done changed from 0 to 100
Also available in: Atom
PDF