From 6b73f6d1980f977fb5e1c0913f0177e35195a02b Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 16 Jun 2019 12:44:00 -0700 Subject: [PATCH] Fix for session issue. --- e107_handlers/session_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/session_handler.php b/e107_handlers/session_handler.php index 0c4ef9724..8001daac7 100644 --- a/e107_handlers/session_handler.php +++ b/e107_handlers/session_handler.php @@ -459,7 +459,7 @@ class e_session public function start($sessionName = null) { - if (isset($_SESSION) && ($this->_sessionStarted == true)) + if (isset($_SESSION) || ($this->_sessionStarted == true)) { return $this; }