From: Bjørn Erik Pedersen Date: Sat, 17 Aug 2019 11:08:03 +0000 (+0200) Subject: Adjust the default paginator for sections X-Git-Tag: v0.57.2~8 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=18836a71ce7b671fa71dd1318b99fc661755e94d;p=brevno-suite%2Fhugo Adjust the default paginator for sections To make it in line with 0.56 for sections; only paginate regular pages. Fixes #6231 --- diff --git a/hugolib/page__paginator.go b/hugolib/page__paginator.go index 20476ecf..640a88c4 100644 --- a/hugolib/page__paginator.go +++ b/hugolib/page__paginator.go @@ -88,7 +88,7 @@ func (p *pagePaginator) Paginator(options ...interface{}) (*page.Pager, error) { // changing in the wild, we make this a special case. pages = p.source.s.RegularPages() } else { - pages = p.source.Pages() + pages = p.source.RegularPages() } paginator, err := page.Paginate(pd, pages, pagerSize) if err != nil {