From: Bjørn Erik Pedersen Date: Thu, 19 Jul 2018 10:20:01 +0000 (+0200) Subject: Revert "hugolib: Fix potential server panic with drafts/future enabled" X-Git-Tag: v0.45~22 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c39ac5738d5841c2fbcdeaa637182b918be22667;p=brevno-suite%2Fhugo Revert "hugolib: Fix potential server panic with drafts/future enabled" This had a side-effect. I have understand this better to apply the correct fix. Will come soon. This reverts commit 1ab4658c0d5ea2927f04bd748206e5b139a6326e. --- diff --git a/hugolib/site.go b/hugolib/site.go index b4607387..42e429e6 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1511,19 +1511,12 @@ func (s *Site) resetBuildState() { spc = newPageCache() - initPage := func(p *Page) { + for _, p := range s.rawAllPages { p.subSections = Pages{} p.parent = nil p.scratch = maps.NewScratch() p.mainPageOutput = nil } - - for _, p := range s.Pages { - initPage(p) - } - for _, p := range s.headlessPages { - initPage(p) - } } func (s *Site) kindFromSections(sections []string) string {