From: Austin Ziegler Date: Fri, 26 Dec 2014 16:55:53 +0000 (-0500) Subject: Fix a crash for ref page#anchor. X-Git-Tag: v0.13~237 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5e0a16ea;p=brevno-suite%2Fhugo Fix a crash for ref page#anchor. - Remove an improperly shadowed variable. - Fixes #741. --- diff --git a/hugolib/site.go b/hugolib/site.go index 172ac8d3..41c0d26c 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -160,8 +160,6 @@ func (s *SiteInfo) refLink(ref string, page *Page, relative bool) (string, error var link string = "" if refUrl.Path != "" { - var target *Page - for _, page := range []*Page(*s.Pages) { if page.Source.Path() == refUrl.Path || page.Source.LogicalName() == refUrl.Path { target = page @@ -187,7 +185,7 @@ func (s *SiteInfo) refLink(ref string, page *Page, relative bool) (string, error if refUrl.Fragment != "" { link = link + "#" + refUrl.Fragment - if refUrl.Path != "" { + if refUrl.Path != "" && target != nil { link = link + ":" + target.UniqueId() } else if page != nil { link = link + ":" + page.UniqueId()