summaryrefslogtreecommitdiffstats
path: root/hugolib/site.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/site.go')
-rw-r--r--hugolib/site.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/hugolib/site.go b/hugolib/site.go
index dce4b8d25..bde8a2199 100644
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -689,12 +689,6 @@ func (s *SiteInfo) AllRegularPages() page.Pages {
return s.s.AllRegularPages()
}
-func (s *SiteInfo) Permalinks() map[string]string {
- // Remove in 0.61
- helpers.Deprecated(".Site.Permalinks", "", true)
- return s.permalinks
-}
-
func (s *SiteInfo) LastChange() time.Time {
return s.s.lastmod
}
@@ -825,7 +819,7 @@ func (s siteRefLinker) logNotFound(ref, what string, p page.Page, position text.
} else if p == nil {
s.errorLogger.Printf("[%s] REF_NOT_FOUND: Ref %q: %s", s.s.Lang(), ref, what)
} else {
- s.errorLogger.Printf("[%s] REF_NOT_FOUND: Ref %q from page %q: %s", s.s.Lang(), ref, p.Path(), what)
+ s.errorLogger.Printf("[%s] REF_NOT_FOUND: Ref %q from page %q: %s", s.s.Lang(), ref, p.Pathc(), what)
}
}
@@ -1402,7 +1396,6 @@ func (s *Site) getMenusFromConfig() navigation.Menus {
}
s.Log.Errorf("unable to process menus in site config\n")
s.Log.Errorln(err)
-
}
for _, entry := range m {