Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tpl/safe
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-08-01 13:50:37 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-08-01 14:39:30 +0300
commit6c70e1f22f365322d5f754302e110c9ed716b215 (patch)
treebcf30eb942afad09a2a7f56e0d0f490614ec1311 /tpl/safe
parent4d221ce468a1209ee9dd6cbece9d1273dad6a29b (diff)
Fix error handling for the time func alias
Fixes #8835
Diffstat (limited to 'tpl/safe')
-rw-r--r--tpl/safe/init.go2
-rw-r--r--tpl/safe/init_test.go4
2 files changed, 4 insertions, 2 deletions
diff --git a/tpl/safe/init.go b/tpl/safe/init.go
index becaf38f3..9fbae4044 100644
--- a/tpl/safe/init.go
+++ b/tpl/safe/init.go
@@ -26,7 +26,7 @@ func init() {
ns := &internal.TemplateFuncsNamespace{
Name: name,
- Context: func(args ...interface{}) interface{} { return ctx },
+ Context: func(args ...interface{}) (interface{}, error) { return ctx, nil },
}
ns.AddMethodMapping(ctx.CSS,
diff --git a/tpl/safe/init_test.go b/tpl/safe/init_test.go
index 2ed7b1872..7aa1473d2 100644
--- a/tpl/safe/init_test.go
+++ b/tpl/safe/init_test.go
@@ -37,5 +37,7 @@ func TestInit(t *testing.T) {
}
c.Assert(found, qt.Equals, true)
- c.Assert(ns.Context(), hqt.IsSameType, &Namespace{})
+ ctx, err := ns.Context()
+ c.Assert(err, qt.IsNil)
+ c.Assert(ctx, hqt.IsSameType, &Namespace{})
}