]> git.datanom.net - qtadmin.git/commitdiff
Fix bug in session handler
authorMichael Rasmussen <mir@datanom.net>
Thu, 4 Jun 2015 16:08:08 +0000 (18:08 +0200)
committerMichael Rasmussen <mir@datanom.net>
Thu, 4 Jun 2015 16:08:08 +0000 (18:08 +0200)
lib/utils.inc.php

index e59cf8c1379132517b37d1d7930fb13d457f33cc..8aa38e083054ae3d3a2e6d6e733d483d5f2b8d90 100644 (file)
@@ -31,12 +31,13 @@ class Utils {
         global $CFG;
 
         $this->server = $_SERVER;
-        session_start();
 
         $this->user = null;
         $this->is_admin = false;
         $this->loginStatus = 'Not logged in';
 
+        $this->startSession();
+
         if (isset($_SESSION['user'])) {
             $this->user = $_SESSION['user'];
             $this->loginStatus = 'OK';
@@ -57,15 +58,9 @@ class Utils {
 
     private function __clone() {}
 
-    public static function getInstance() {
+    private function startSession() {
         global $CFG;
 
-        if (!is_object(self::$_instance)) {
-            self::$_instance = new Utils();
-        }
-        // Session timeout handler
-        if ('' == session_id())
-            session_start();
         if (isset($CFG->session_timeout)) {
             $timeout = $CFG->session_timeout * 60;
         } else {
@@ -76,15 +71,24 @@ class Utils {
             ini_set('session.gc_maxlifetime', $timeout);
         if (ini_get('session.cookie_lifetime') != $timeout)
             ini_set('session.cookie_lifetime', $timeout);
+
+        session_start();
+
         $time = $_SERVER['REQUEST_TIME'];
         if (isset($_SESSION['LAST_ACTIVITY']) && ($time - $_SESSION['LAST_ACTIVITY']) >= $timeout) {
             session_unset();
             session_destroy();
-            session_start();
             self::$_instance->user = null;
             self::$_instance->is_admin = false;
+        } else {
+            $_SESSION['LAST_ACTIVITY'] = $time;
+        }
+    }
+
+    public static function getInstance() {
+        if (!is_object(self::$_instance)) {
+            self::$_instance = new Utils();
         }
-        $_SESSION['LAST_ACTIVITY'] = $time;
 
         return self::$_instance;
     }
This page took 0.032214 seconds and 5 git commands to generate.