Fix MFA Enforcement

This commit is contained in:
johnnyq
2025-09-23 20:30:25 -04:00
parent ed6aa843b7
commit 50f790dd6c
4 changed files with 22 additions and 22 deletions

View File

@@ -24,9 +24,9 @@ if (isset($_GET['logout'])) {
session_destroy();
if ($config_login_key_required == 1) {
header('Location: ../login.php?key=' . $config_login_key_secret);
header('Location: ../../login.php?key=' . $config_login_key_secret);
} else {
header('Location: ../login.php');
header('Location: ../../login.php');
}
}