From 7795c415ab50bbf6af46e615bb74a6c6d5e41d0b Mon Sep 17 00:00:00 2001 From: Rodney Stromlund Date: Wed, 29 Mar 2023 08:20:52 -0500 Subject: isLoggedIn adds a message to the system log when it returns false, fix for php8+ --- classes/api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/api.php') diff --git a/classes/api.php b/classes/api.php index b482a70eb..bee1ff509 100755 --- a/classes/api.php +++ b/classes/api.php @@ -99,7 +99,7 @@ class API extends Handler { } function isLoggedIn(): bool { - return $this->_wrap(self::STATUS_OK, array("status" => $_SESSION["uid"] != '')); + return $this->_wrap(self::STATUS_OK, array("status" => ($_SESSION["uid"] ?? '') != '')); } function getUnread(): bool { -- cgit v1.2.3