Make worst password search case-insensitive

V2_Rewrite
Skylar Ittner 7 년 전
부모 1b334ff894
커밋 1665b3f3e7

@ -513,7 +513,7 @@ function checkWorst500List($search) {
"albert"
];
$index = array_search($search, $worst_password_list);
$index = array_search(strtolower($search), $worst_password_list);
if ($index === FALSE) {
return false;
} else {

불러오는 중...
취소
저장