diff options
author | Otto <otto@codeberg.org> | 2024-11-11 15:22:32 +0100 |
---|---|---|
committer | Otto <otto@codeberg.org> | 2024-11-11 15:22:32 +0100 |
commit | 3531710dc6843994dc304f59bddb82fca1fbeb2b (patch) | |
tree | 49bf284997d8a65cc3799fd13a3daa64e79bbcb1 /services | |
parent | Update module github.com/golangci/golangci-lint/cmd/golangci-lint to v1.62.0 ... (diff) | |
parent | fix: Add created_unix and updated_unix to repo1 fixture (diff) | |
download | forgejo-3531710dc6843994dc304f59bddb82fca1fbeb2b.tar.xz forgejo-3531710dc6843994dc304f59bddb82fca1fbeb2b.zip |
Merge pull request 'fix: Proper parsing of date for git commits' (#5892) from gusted/forgejo-port-32409 into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5892
Reviewed-by: Otto <otto@codeberg.org>
Diffstat (limited to 'services')
-rw-r--r-- | services/context/context.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/services/context/context.go b/services/context/context.go index 65796c3ee7..91e7b1849d 100644 --- a/services/context/context.go +++ b/services/context/context.go @@ -102,7 +102,6 @@ func NewTemplateContextForWeb(ctx *Context) TemplateContext { tmplCtx := NewTemplateContext(ctx) tmplCtx["Locale"] = ctx.Base.Locale tmplCtx["AvatarUtils"] = templates.NewAvatarUtils(ctx) - tmplCtx["DateUtils"] = templates.NewDateUtils(ctx) return tmplCtx } |