aboutsummaryrefslogtreecommitdiffstats
path: root/routers/install/install.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/install/install.go')
-rw-r--r--routers/install/install.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/routers/install/install.go b/routers/install/install.go
index 45804acf3b..7c3d43bbde 100644
--- a/routers/install/install.go
+++ b/routers/install/install.go
@@ -80,9 +80,7 @@ func Init(next http.Handler) http.Handler {
"AllLangs": translation.AllLangs(),
"CurrentURL": setting.AppSubURL + req.URL.RequestURI(),
"PageStartTime": startTime,
- "TmplLoadTimes": func() string {
- return time.Since(startTime).String()
- },
+
"PasswordHashAlgorithms": user_model.AvailableHashAlgorithms,
},
}
@@ -554,7 +552,7 @@ func SubmitInstall(ctx *context.Context) {
ctx.Flash.Success(ctx.Tr("install.install_success"))
- ctx.Header().Add("Refresh", "1; url="+setting.AppURL+"user/login")
+ ctx.RespHeader().Add("Refresh", "1; url="+setting.AppURL+"user/login")
ctx.HTML(http.StatusOK, tplPostInstall)
// Now get the http.Server from this request and shut it down