Changeset - d5c7b21ff54a
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2011-06-04 00:28:58
marcin@python-works.com
fixes issue #198 password will require only 3 chars now for login form
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/forms.py
Show inline comments
 
@@ -461,7 +461,7 @@ class LoginForm(formencode.Schema):
 

	
 
    password = UnicodeString(
 
                            strip=True,
 
                            min=6,
 
                            min=3,
 
                            not_empty=True,
 
                            messages={
 
                                      'empty':_('Please enter a password'),
0 comments (0 inline, 0 general)