diff options
author | Thomas Boerger <thomas@webhippie.de> | 2017-03-01 02:45:21 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-03-01 09:45:21 +0800 |
commit | db6777d3697daae7d093a585968fce5f91307faa (patch) | |
tree | 125b9739d13186dd95774ae2541ae87330617268 /modules/templates/helper.go | |
parent | d21d5fd736758b66102d6a75a189db578e06e377 (diff) | |
download | gitea-db6777d3697daae7d093a585968fce5f91307faa.tar.gz gitea-db6777d3697daae7d093a585968fce5f91307faa.zip |
Fixed custom templates for static builds (#1087)
Diffstat (limited to 'modules/templates/helper.go')
-rw-r--r-- | modules/templates/helper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go index 1f510bda6a..2a45f76a74 100644 --- a/modules/templates/helper.go +++ b/modules/templates/helper.go @@ -49,7 +49,7 @@ func NewFuncMap() []template.FuncMap { return setting.AppVer }, "AppBuiltWith": func() string { - return setting.AppBuiltWith + return setting.AppBuiltWith }, "AppDomain": func() string { return setting.Domain |