Updating password length validation

- setting it back to 7 chars so that people who have 7 char passwords, which were valid, can login.
This commit is contained in:
Hannah Wolfe 2013-08-20 10:43:11 +01:00
parent af4fbc1f3b
commit ac5f668dab

View File

@ -214,8 +214,8 @@
return;
}
if (newPassword.length < 8) {
this.saveError('The password is not long enough. Have at least 8 characters');
if (newPassword.length < 7) {
this.saveError('The password is not long enough. Have at least 7 characters');
return;
}