1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-20 10:52:15 +01:00

Case-insensitive

This commit is contained in:
Paul Chen 2008-11-29 02:57:56 +00:00
parent 3df961d2f8
commit c6270e78d3

View File

@ -18,6 +18,8 @@ if ($otp == '') {
debug('OTP is missing'); debug('OTP is missing');
sendResp(S_MISSING_PARAMETER, 'otp'); sendResp(S_MISSING_PARAMETER, 'otp');
exit; exit;
} else {
$otp = strtolower($otp);
} }
//// Get Yubikey from DB //// Get Yubikey from DB