Merge branch '3.4' into 3.4.3

This commit is contained in:
Daniel Hensby 2016-12-19 16:17:44 +00:00
commit c794c29ddb
No known key found for this signature in database
GPG Key ID: B00D1E9767F0B06E

View File

@ -293,6 +293,7 @@ class PaginatedList extends SS_ListDecorator {
}
$left = max($current - $offset, 1);
$right = min($current + $offset, $total);
$range = range($current - $offset, $current + $offset);
if ($left + $context > $total) {
@ -304,7 +305,7 @@ class PaginatedList extends SS_ListDecorator {
$num = $i + 1;
$emptyRange = $num != 1 && $num != $total && (
$num == $left - 1 || $num == $left + $context + 1
$num == $left - 1 || $num == $right + 1
);
if ($emptyRange) {