Changeset - 360f31856657
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 12 years ago 2013-09-01 20:34:57
marcin@python-works.com
backport fix

fixed password refill in login form when wrong password was given

It's better to not refill the passwords on wrong credentials given.
Standard behaviour on all pages are making the password blank
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/controllers/login.py
Show inline comments
 
@@ -146,7 +146,7 @@ class LoginController(BaseController):
 
                form_result['active'] = c.auto_active
 
                UserModel().create_registration(form_result)
 
                h.flash(_('You have successfully registered into RhodeCode'),
 
                            category='success')
 
                        category='success')
 
                Session().commit()
 
                return redirect(url('login_home'))
 

	
0 comments (0 inline, 0 general)