mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05: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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue