mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
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:
parent
af4fbc1f3b
commit
ac5f668dab
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user