From 45fc21386a05eef391ce1469e5a40b521fe94e7f Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Tue, 11 Jan 2022 11:49:53 +0100 Subject: Fix include path & bug --- admin/inc/auth.inc.php | 2 +- atom.php | 2 +- index.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/inc/auth.inc.php b/admin/inc/auth.inc.php index 0acf934..0305b13 100644 --- a/admin/inc/auth.inc.php +++ b/admin/inc/auth.inc.php @@ -6,7 +6,7 @@ if (!class_exists('Planet')) { require __DIR__.'/../../vendor/autoload.php'; } -if (!Planet::authenticateUser($_COOKIE['auth'], $password)) { +if (!Planet::authenticateUser($_COOKIE['auth'] ?? '', $password)) { setcookie('auth', '', time() - 3600); header('Location: login.php'); die(); diff --git a/atom.php b/atom.php index c80d987..3af030d 100644 --- a/atom.php +++ b/atom.php @@ -1,6 +1,6 @@ loadOpml(__DIR__.'/custom/people.opml') == 0) exit; diff --git a/index.php b/index.php index 3a2c1e4..af37b7c 100755 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@