- Patch #7161 by jhriggs: fixed bug with 'last page' functionality.
parent
2caeac91ae
commit
4eb05da890
|
@ -170,7 +170,7 @@ function pager_next($text, $limit, $element = 0, $n = 1, $attributes = array())
|
|||
function pager_last($text, $limit, $element = 0, $attributes = array()) {
|
||||
global $pager_from_array, $pager_total;
|
||||
|
||||
$from_new = pager_load_array(($pager_total[$element] - $limit), $element, $pager_from_array);
|
||||
$from_new = pager_load_array(($pager_total[$element] - ($pager_total[$element] % $limit)), $element, $pager_from_array);
|
||||
if ($from_new[$element] < ($pager_from_array[$element] + $limit)) {
|
||||
return pager_next($text, $limit, $element, 1, $attributes);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue