diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2018-01-11 23:19:38 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-01-12 00:19:38 +0200 |
commit | e5b8b4b5ec076b100b86845d2b4a8ff7ff71a87a (patch) | |
tree | cbd22852523b05ad2e6472f65228b9b4822c2f05 /routers/user/auth.go | |
parent | 9aed18073dd825c7bcd00aef39ef282fec863796 (diff) | |
download | gitea-e5b8b4b5ec076b100b86845d2b4a8ff7ff71a87a.tar.gz gitea-e5b8b4b5ec076b100b86845d2b4a8ff7ff71a87a.zip |
Cleanup models.User.HashPassword (#3334)
Diffstat (limited to 'routers/user/auth.go')
-rw-r--r-- | routers/user/auth.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/routers/user/auth.go b/routers/user/auth.go index c3fb911b07..6edcb914b1 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -984,7 +984,6 @@ func ResetPasswdPost(ctx *context.Context) { return } - u.Passwd = passwd var err error if u.Rands, err = models.GetUserSalt(); err != nil { ctx.ServerError("UpdateUser", err) @@ -994,7 +993,7 @@ func ResetPasswdPost(ctx *context.Context) { ctx.ServerError("UpdateUser", err) return } - u.HashPassword() + u.HashPassword(passwd) if err := models.UpdateUserCols(u, "passwd", "rands", "salt"); err != nil { ctx.ServerError("UpdateUser", err) return |