From d3c4a10fe714842c534e69c69fb42b38974b14b7 Mon Sep 17 00:00:00 2001 From: Michael Rasmussen Date: Fri, 5 Jun 2015 01:31:07 +0200 Subject: [PATCH] Fix bug in session handler --- lib/utils.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils.inc.php b/lib/utils.inc.php index c90b98b..4645e24 100644 --- a/lib/utils.inc.php +++ b/lib/utils.inc.php @@ -110,7 +110,7 @@ class Utils implements Serializable { if (isset($_SESSION['LAST_ACTIVITY']) && ($time - $_SESSION['LAST_ACTIVITY']) >= self::$_instance->timeout) { echo 'R_TIME: '.date('c', $time).' L_ACT: '.date('c', $_SESSION['LAST_ACTIVITY']); - exit; + //exit; session_unset(); session_destroy(); self::$_instance->user = null; @@ -219,7 +219,7 @@ class Utils implements Serializable { if ($loggedIn == false) { echo '$this->user: '.$this->user.' $_SESSION[\'user\']: '.$_SESSION['user']; echo 'R_TIME: '.date('c', $_SERVER['REQUEST_TIME']).' L_ACT: '.date('c', $_SESSION['LAST_ACTIVITY']); - exit; + //exit; } $_SESSION['Utils'] = serialize($this); -- 2.39.2