Skip to content

Commit e2465bd

Browse files
author
Till Brehm
committed
Fixed #5128 Bug in password strength meter
1 parent 400986d commit e2465bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/classes/validate_password.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private function _get_password_strength($password) {
7171
} else if ($points == 1) {
7272
if ($length >= 5 && $length <= 6) {
7373
return 2;
74-
} else if (length >= 7 && length <=10) {
74+
} else if ($length >= 7 && $length <=10) {
7575
return 3;
7676
} else {
7777
return 4;

0 commit comments

Comments
 (0)