From d80026cab10742e2b068802e7239f49187600eb0 Mon Sep 17 00:00:00 2001 From: megasaturnv Date: Mon, 5 Sep 2022 15:29:23 +0100 Subject: [PATCH] Fix typo --- web/includes/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/auth.php b/web/includes/auth.php index 07956b7a4..df03ed539 100644 --- a/web/includes/auth.php +++ b/web/includes/auth.php @@ -276,7 +276,7 @@ function userFromSession() { if (ZM_CASE_INSENSITIVE_USERNAMES) { $user = dbFetchOne($sql, NULL, array(strtolower($_SESSION['username']))); } else { - $user = dbFetchOne($sql, NULL, array(c)); + $user = dbFetchOne($sql, NULL, array($_SESSION['username'])); } } }