aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/Session.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-13 19:49:25 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-13 19:49:25 +0100
commit5e98c2183ae824ab6a1dd2dc22f8619a0d718977 (patch)
tree24ab567d403c967a8b33de8750053abeeca0125a /inc/3rdparty/Session.class.php
parent38dafee05d52948fba4a06066d7b0343c8e3de9d (diff)
parent9f3148fec787a51f837549907130e8ec980a0547 (diff)
downloadwallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.tar.gz
wallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.tar.zst
wallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.zip
Merge pull request #450 from wallabag/dev1.5.0
1.5.0
Diffstat (limited to 'inc/3rdparty/Session.class.php')
-rw-r--r--inc/3rdparty/Session.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/3rdparty/Session.class.php b/inc/3rdparty/Session.class.php
index 32624559..b30a31f3 100644
--- a/inc/3rdparty/Session.class.php
+++ b/inc/3rdparty/Session.class.php
@@ -31,9 +31,9 @@ class Session
31 public static $sessionName = ''; 31 public static $sessionName = '';
32 // If the user does not access any page within this time, 32 // If the user does not access any page within this time,
33 // his/her session is considered expired (3600 sec. = 1 hour) 33 // his/her session is considered expired (3600 sec. = 1 hour)
34 public static $inactivityTimeout = 3600; 34 public static $inactivityTimeout = 86400;
35 // Extra timeout for long sessions (if enabled) (82800 sec. = 23 hours) 35 // Extra timeout for long sessions (if enabled) (82800 sec. = 23 hours)
36 public static $longSessionTimeout = 82800; 36 public static $longSessionTimeout = 31536000;
37 // If you get disconnected often or if your IP address changes often. 37 // If you get disconnected often or if your IP address changes often.
38 // Let you disable session cookie hijacking protection 38 // Let you disable session cookie hijacking protection
39 public static $disableSessionProtection = false; 39 public static $disableSessionProtection = false;