From 78830c6e1aaeb0bea30dce2dbceffab109346954 Mon Sep 17 00:00:00 2001 From: TheWitness Date: Fri, 19 Apr 2024 09:05:08 -0400 Subject: [PATCH] QA: Minor fixup to #5732 Wrong variable use. --- include/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/auth.php b/include/auth.php index c95b1ff43..1f2f1b3df 100644 --- a/include/auth.php +++ b/include/auth.php @@ -98,7 +98,7 @@ if (cacti_sizeof($current_user)) { $_SESSION['sess_user_id'] = $current_user['id'];; - cacti_log("LOGIN: User '" . $user['username'] . "' authenticated via Basic Authentication.", false, 'AUTH'); + cacti_log("LOGIN: User '" . $current_user['username'] . "' authenticated via Basic Authentication.", false, 'AUTH'); $client_addr = get_client_addr();