tpl: Fix strings.HasPrefix args order - hugo - [fork] hugo port for 9front
 (HTM) git clone git@git.drkhsh.at/hugo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7201042946dde78d5ea4fea9cb006fb4dded55c1
 (DIR) parent 5383fe458c0ce24e1623dd91e795d4fb5772ae9d
 (HTM) Author: Iskander (Alex) Sharipov <quasilyte@gmail.com>
       Date:   Sat,  2 Feb 2019 03:26:05 +0300
       
       tpl: Fix strings.HasPrefix args order
       
       
       Diffstat:
         M tpl/partials/partials.go            |       2 +-
         M tpl/tplimpl/templateFuncster.go     |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/tpl/partials/partials.go b/tpl/partials/partials.go
       @@ -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{}
 (DIR) diff --git a/tpl/tplimpl/templateFuncster.go b/tpl/tplimpl/templateFuncster.go
       @@ -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{}