From: Bjørn Erik Pedersen Date: Thu, 19 Jul 2018 15:47:05 +0000 (+0200) Subject: hugolib: Only do page-relative getPage for relative paths X-Git-Tag: v0.45~16 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=501543d4b6d381a1de496baf2870993a03afcfdb;p=brevno-suite%2Fhugo hugolib: Only do page-relative getPage for relative paths Updates #4969 --- diff --git a/hugolib/page_collections.go b/hugolib/page_collections.go index e364d2ef..60f7dd83 100644 --- a/hugolib/page_collections.go +++ b/hugolib/page_collections.go @@ -167,10 +167,8 @@ func (c *PageCollections) getPageNew(context *Page, ref string) (*Page, error) { if p, err := c.getFromCache(ref); err == nil && p != nil { return p, nil } - } - - // If there's a page context, try the page relative path. - if context != nil { + } else if context != nil { + // Try the page-relative path. ppath := path.Join("/", strings.Join(context.sections, "/"), ref) if p, err := c.getFromCache(ppath); err == nil && p != nil { return p, nil