From 3562192d691d9516677bd796dc85368d84c8a394 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 19 Oct 2020 18:51:18 +0200 Subject: [PATCH] minor fix --- pandora_console/index.php | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index fac333e101..84741eb310 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -408,10 +408,12 @@ if (! isset($config['id_user'])) { enterprise_hook('saml_logout'); } - $_SESSION = []; - session_destroy(); - header_remove('Set-Cookie'); - setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); + if (session_status() !== PHP_SESSION_NONE) { + $_SESSION = []; + session_destroy(); + header_remove('Set-Cookie'); + setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); + } // Process logout. include 'general/logoff.php'; @@ -973,10 +975,12 @@ if (isset($_GET['bye'])) { enterprise_hook('saml_logout'); } - $_SESSION = []; - session_destroy(); - header_remove('Set-Cookie'); - setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); + if (session_status() !== PHP_SESSION_NONE) { + $_SESSION = []; + session_destroy(); + header_remove('Set-Cookie'); + setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); + } // Process logout.