mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:45:55 +00:00
Check that $_SESSION["uid"] is defined before checking value
This commit is contained in:
@@ -106,7 +106,7 @@
|
||||
if (isset($_COOKIE[$session_name])) {
|
||||
@session_start();
|
||||
|
||||
if (!$_SESSION["uid"]) {
|
||||
if (!isset($_SESSION["uid"] || !$_SESSION["uid"]) {
|
||||
session_destroy();
|
||||
setcookie(session_name(), '', time()-42000, '/');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user