Browse Source

Check for session.use_trans_sid and session ID in URL in case cookies are disabled

Clemens Weiß 8 years ago
parent
commit
f209ef9a8d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Network/Session.php

+ 2 - 1
src/Network/Session.php

@@ -538,7 +538,8 @@ class Session
     {
         return !ini_get('session.use_cookies')
             || isset($_COOKIE[session_name()])
-            || $this->_isCLI;
+            || $this->_isCLI
+            || (ini_get('session.use_trans_sid') && isset($_GET[session_name()]));
     }
 
     /**