aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates
diff options
context:
space:
mode:
Diffstat (limited to 'modules/templates')
-rw-r--r--modules/templates/static.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/templates/static.go b/modules/templates/static.go
index c16b18cc08..6fd4d245e1 100644
--- a/modules/templates/static.go
+++ b/modules/templates/static.go
@@ -112,13 +112,11 @@ func NewTemplateFileSystem() templateFileSystem {
return fs
}
-var tplFileSys = NewTemplateFileSystem()
-
// HTMLRenderer implements the macaron handler for serving HTML templates.
func HTMLRenderer() macaron.Handler {
return macaron.Renderer(macaron.RenderOptions{
Funcs: NewFuncMap(),
- TemplateFileSystem: tplFileSys,
+ TemplateFileSystem: NewTemplateFileSystem(),
})
}
@@ -126,7 +124,7 @@ func HTMLRenderer() macaron.Handler {
func JSONRenderer() macaron.Handler {
return macaron.Renderer(macaron.RenderOptions{
Funcs: NewFuncMap(),
- TemplateFileSystem: tplFileSys,
+ TemplateFileSystem: NewTemplateFileSystem(),
HTMLContentType: "application/json",
})
}