mirror of https://github.com/go-gitea/gitea.git
Do not use `ctx.Doer` when reset password (#29289)
Fix #29278. Caused by a small typo in #28733
This commit is contained in:
parent
3d3c3d9ee5
commit
22b8de85dd
|
@ -204,7 +204,7 @@ func ResetPasswdPost(ctx *context.Context) {
|
|||
Password: optional.Some(ctx.FormString("password")),
|
||||
MustChangePassword: optional.Some(false),
|
||||
}
|
||||
if err := user_service.UpdateAuth(ctx, ctx.Doer, opts); err != nil {
|
||||
if err := user_service.UpdateAuth(ctx, u, opts); err != nil {
|
||||
ctx.Data["IsResetForm"] = true
|
||||
ctx.Data["Err_Password"] = true
|
||||
switch {
|
||||
|
|
Loading…
Reference in New Issue