From: Anthony Fok Date: Sun, 3 Jun 2018 11:45:33 +0000 (-0600) Subject: tpl: Prevent isBaseTemplate() from matching "baseof" in dir X-Git-Tag: v0.42~18 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c3115292a7f2d2623cb45054a361e997ad9330c9;p=brevno-suite%2Fhugo tpl: Prevent isBaseTemplate() from matching "baseof" in dir Fixes #4809 --- diff --git a/tpl/tplimpl/template.go b/tpl/tplimpl/template.go index 74860b67..8f91113a 100644 --- a/tpl/tplimpl/template.go +++ b/tpl/tplimpl/template.go @@ -726,5 +726,5 @@ func isBackupFile(path string) bool { const baseFileBase = "baseof" func isBaseTemplate(path string) bool { - return strings.Contains(path, baseFileBase) + return strings.Contains(filepath.Base(path), baseFileBase) }