diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-01-14 23:35:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 23:35:10 +0800 |
commit | f76c30094f086162d09926a95e9a75c91177a674 (patch) | |
tree | d68197d41a3f6cf0a2f86b2310752e0f128ece93 | |
parent | edbc5c86dfda07a0eada0acd7461a610fee00ae3 (diff) | |
download | gitea-f76c30094f086162d09926a95e9a75c91177a674.tar.gz gitea-f76c30094f086162d09926a95e9a75c91177a674.zip |
Fix typo (#14332)
-rw-r--r-- | modules/auth/sso/sspi_windows.go | 2 | ||||
-rw-r--r-- | routers/routes/recovery.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/auth/sso/sspi_windows.go b/modules/auth/sso/sspi_windows.go index 44dfa81aa1..46309c27f7 100644 --- a/modules/auth/sso/sspi_windows.go +++ b/modules/auth/sso/sspi_windows.go @@ -95,7 +95,7 @@ func (s *SSPI) VerifyAuthData(req *http.Request, w http.ResponseWriter, store Da // to login with another authentication method if SSPI authentication // fails store.GetData()["Flash"] = map[string]string{ - "ErrMsg": err.Error(), + "ErrorMsg": err.Error(), } store.GetData()["EnableOpenIDSignIn"] = setting.Service.EnableOpenIDSignIn store.GetData()["EnableSSPI"] = true diff --git a/routers/routes/recovery.go b/routers/routes/recovery.go index f392d1d553..7f33fee0f3 100644 --- a/routers/routes/recovery.go +++ b/routers/routes/recovery.go @@ -95,7 +95,7 @@ func Recovery() func(next http.Handler) http.Handler { w.Header().Set(`X-Frame-Options`, `SAMEORIGIN`) if setting.RunMode != "prod" { - store.Data["ErrMsg"] = combinedErr + store.Data["ErrorMsg"] = combinedErr } err = rnd.HTML(w, 500, "status/500", templates.BaseVars().Merge(store.Data)) if err != nil { |