Skip to content
Snippets Groups Projects
Commit e2465bd7 authored by Till Brehm's avatar Till Brehm
Browse files

Fixed #5128 Bug in password strength meter

parent 400986dc
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class validate_password {
} else if ($points == 1) {
if ($length >= 5 && $length <= 6) {
return 2;
} else if (length >= 7 && length <=10) {
} else if ($length >= 7 && $length <=10) {
return 3;
} else {
return 4;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment