Authentication [Class] - Updates for PHP 8.1

This commit is contained in:
fusionate 2023-05-16 18:54:11 +00:00
parent f7951324ea
commit 3dc38973e1
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -169,7 +169,7 @@ class authentication {
user_logs::add($result);
//debug information
if ($debug) {
if (!empty($debug)) {
if ($row["authorized"]) {
echo "authorized: true\n";
}
@ -179,7 +179,7 @@ class authentication {
}
//user is authorized - get user settings, check user cidr
if ($authorized) {
if (!empty($authorized)) {
//set a session variable to indicate authorized is set to true
$_SESSION['authorized'] = true;
@ -403,7 +403,7 @@ class authentication {
} //authorized true
//return the result
return $result;
return $result ?? false;
}
/**