From c39ac5738d5841c2fbcdeaa637182b918be22667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 19 Jul 2018 12:20:01 +0200 Subject: [PATCH] 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. --- hugolib/site.go | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/hugolib/site.go b/hugolib/site.go index b4607387f..42e429e67 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 {