Unverified Commit 700a31e0 authored by Helmo's avatar Helmo
Browse files

fix extra space

parent 5248548a
......@@ -66,7 +66,7 @@ function finish_2fa_success($msg = '') {
if (!empty($msg)) {
$msg = ' ' . $msg;
}
$app->auth_log('Successful login for user \''. $username .'\' ' . $msg . ' from '. $_SERVER['REMOTE_ADDR'] .' at '. date('Y-m-d H:i:s') . ' with session ID ' .session_id());
$app->auth_log('Successful login for user \''. $username .'\'' . $msg . ' from '. $_SERVER['REMOTE_ADDR'] .' at '. date('Y-m-d H:i:s') . ' with session ID ' .session_id());
$app->db->query('UPDATE `sys_user` SET otp_attempts=0 WHERE userid = ?', $_SESSION['s']['user']['userid']);
session_write_close();
header('Location: ../index.php');
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment