mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:47:35 -04:00 
			
		
		
		
	Backport #13966 `user.HashPassword` may potentially - and in fact now likely does - change the `passwd_hash_algo` therefore whenever the `passwd` is updated, this also needs to be updated. Fix #13832 Thanks @fblaese for the hint Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		| @@ -283,7 +283,7 @@ func runChangePassword(c *cli.Context) error { | ||||
| 	} | ||||
| 	user.HashPassword(c.String("password")) | ||||
|  | ||||
| 	if err := models.UpdateUserCols(user, "passwd", "salt"); err != nil { | ||||
| 	if err := models.UpdateUserCols(user, "passwd", "passwd_hash_algo", "salt"); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user