diff options
Diffstat (limited to 'modules/base/template.go')
-rw-r--r-- | modules/base/template.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index 23d3d27713..db79340e75 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -6,9 +6,7 @@ package base import ( "container/list" - "fmt" "html/template" - "time" ) func Str2html(raw string) template.HTML { @@ -42,9 +40,6 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{ "AppDomain": func() string { return Domain }, - "LoadTimes": func(startTime time.Time) string { - return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" - }, "AvatarLink": AvatarLink, "str2html": Str2html, "TimeSince": TimeSince, |