aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--inc/3rdparty/Session.class.php4
-rwxr-xr-xindex.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/inc/3rdparty/Session.class.php b/inc/3rdparty/Session.class.php
index b56e4c54..6ff73a76 100644
--- a/inc/3rdparty/Session.class.php
+++ b/inc/3rdparty/Session.class.php
@@ -51,9 +51,9 @@ class Session
51 public static function init($longlastingsession = false) 51 public static function init($longlastingsession = false)
52 { 52 {
53 //check if session name is correct 53 //check if session name is correct
54 if ( (session_id() && !empty(self::$sessionName) && session_name()!=self::$sessionName) || $longlastingsession ) { 54 /*if ( (session_id() && !empty(self::$sessionName) && session_name()!=self::$sessionName) || $longlastingsession ) {
55 session_destroy(); 55 session_destroy();
56 } 56 }*/
57 57
58 // Force cookie path (but do not change lifetime) 58 // Force cookie path (but do not change lifetime)
59 $cookie = session_get_cookie_params(); 59 $cookie = session_get_cookie_params();
diff --git a/index.php b/index.php
index 7e4fc600..df70e413 100755
--- a/index.php
+++ b/index.php
@@ -15,7 +15,7 @@ require_once 'inc/poche/global.inc.php';
15 15
16// Start session 16// Start session
17Session::$sessionName = 'wallabag'; 17Session::$sessionName = 'wallabag';
18Session::init(); 18Session::init(true);
19 19
20// Let's rock ! 20// Let's rock !
21$wallabag = new Poche(); 21$wallabag = new Poche();