mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
tpl: Fix strings.HasPrefix args order
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
5383fe458c
commit
7201042946
@ -65,7 +65,7 @@ type Namespace struct {
|
||||
// Include executes the named partial and returns either a string,
|
||||
// when the partial is a text/template, or template.HTML when html/template.
|
||||
func (ns *Namespace) Include(name string, contextList ...interface{}) (interface{}, error) {
|
||||
if strings.HasPrefix("partials/", name) {
|
||||
if strings.HasPrefix(name, "partials/") {
|
||||
name = name[8:]
|
||||
}
|
||||
var context interface{}
|
||||
|
@ -39,7 +39,7 @@ func newTemplateFuncster(deps *deps.Deps) *templateFuncster {
|
||||
// Partial executes the named partial and returns either a string,
|
||||
// when called from text/template, for or a template.HTML.
|
||||
func (t *templateFuncster) partial(name string, contextList ...interface{}) (interface{}, error) {
|
||||
if strings.HasPrefix("partials/", name) {
|
||||
if strings.HasPrefix(name, "partials/") {
|
||||
name = name[8:]
|
||||
}
|
||||
var context interface{}
|
||||
|
Reference in New Issue
Block a user