From d2870a260a231c5283ea5499d40ae73847a76110 Mon Sep 17 00:00:00 2001 From: Herman van Rink <rink@initfour.nl> Date: Sun, 27 Mar 2022 15:10:14 +0200 Subject: [PATCH] Log when using 2fa --- interface/web/login/otp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/web/login/otp.php b/interface/web/login/otp.php index acc07891f4..543ded4a44 100644 --- a/interface/web/login/otp.php +++ b/interface/web/login/otp.php @@ -118,7 +118,7 @@ if($_SESSION['otp']['type'] == 'email') { //* 2fa success if(password_verify($_POST['code'], $_SESSION['otp']['code_hash'])) { - finish_2fa_success(); + finish_2fa_success('with 2fa'); } else { //* 2fa wrong code $_SESSION['otp']['session_attempts']++; -- GitLab