pull/3582/head
megasaturnv 2022-09-05 15:29:23 +01:00 committed by GitHub
parent 6c0f40f570
commit d80026cab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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']));
}
}
}