migrating from u2f-api.js to webauthn
parent
be4af41e64
commit
68abd6a535
|
@ -17,7 +17,8 @@ if (is_array($alertbox_log_parser)) {
|
||||||
}
|
}
|
||||||
$alert = array_filter(array_unique($alerts));
|
$alert = array_filter(array_unique($alerts));
|
||||||
foreach($alert as $alert_type => $alert_msg) {
|
foreach($alert as $alert_type => $alert_msg) {
|
||||||
$alerts[$alert_type] = implode('<hr class="alert-hr">', $alert_msg);
|
// html breaks from mysql alerts, replace ` with '
|
||||||
|
$alerts[$alert_type] = implode('<hr class="alert-hr">', str_replace("`", "'", $alert_msg));
|
||||||
}
|
}
|
||||||
unset($_SESSION['return']);
|
unset($_SESSION['return']);
|
||||||
}
|
}
|
||||||
|
|
|
@ -181,7 +181,7 @@ function recursiveBase64StrToArrayBuffer(obj) {
|
||||||
backdrop: 'static',
|
backdrop: 'static',
|
||||||
keyboard: false
|
keyboard: false
|
||||||
});
|
});
|
||||||
$('#webauthn_status_auth').html('<p><i class="bi bi-arrow-repeat icon-spin"></i> ' + lang_tfa.init_u2f + '</p>');
|
$('#webauthn_status_auth').html('<p><i class="bi bi-arrow-repeat icon-spin"></i> ' + lang_tfa.init_webauthn + '</p>');
|
||||||
$('#ConfirmTFAModal').on('shown.bs.modal', function(){
|
$('#ConfirmTFAModal').on('shown.bs.modal', function(){
|
||||||
$(this).find('input[name=token]').focus();
|
$(this).find('input[name=token]').focus();
|
||||||
// If WebAuthn
|
// If WebAuthn
|
||||||
|
|
Loading…
Reference in New Issue