pull/3588/head
megasaturnv 2022-09-05 15:29:23 +01:00 committed by Isaac Connor
parent c90e2f7898
commit 143a00cccc
1 changed files with 1 additions and 1 deletions

View File

@ -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']));
}
}
}