mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:59:31 +01:00
Do not use ctx.Doer
when reset password (#29289)
Fix #29278. Caused by a small typo in #28733 (cherry picked from commit 22b8de85ddda50725480b21c5bf6ef9c0202b5e9)
This commit is contained in:
parent
f803c5c0f4
commit
52bf6bf60c
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue