1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Do not use ctx.Doer when reset password (#29289)

Fix #29278.

Caused by a small typo in #28733
This commit is contained in:
Jason Song
2024-02-21 12:57:22 +08:00
committed by GitHub
parent 3d3c3d9ee5
commit 22b8de85dd

View File

@@ -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 {