diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-04-20 07:30:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 19:30:09 -0400 |
commit | a56fcdfa8f19efcc53c2163d60c9c1e1bafbc019 (patch) | |
tree | 51c6726e06af276432e2f03c917f328a6ba6ea74 /templates/base | |
parent | 18727df73a00e7d05d3e1a68d6dae521cca7ff49 (diff) | |
download | gitea-a56fcdfa8f19efcc53c2163d60c9c1e1bafbc019.tar.gz gitea-a56fcdfa8f19efcc53c2163d60c9c1e1bafbc019.zip |
Fix nil error when some pages are rendered outside request context (#19427)
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/footer_content.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl index 52e7c7e77e..f5ec6b0bf3 100644 --- a/templates/base/footer_content.tmpl +++ b/templates/base/footer_content.tmpl @@ -10,7 +10,7 @@ {{AppVer}} {{end}} {{end}} - {{if ShowFooterTemplateLoadTime}} + {{if and .TemplateLoadTimes ShowFooterTemplateLoadTime}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}} {{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong> |