diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:51 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:51 +0100 |
commit | 16fd1cce61a2b8fae4edce108d95f172c4dd32b1 (patch) | |
tree | ebfe5ccf36bfb275d2ec636933800e61b948fce2 /inc | |
parent | f14807de06929486de6e2b64cd30e5c53978d8c0 (diff) | |
download | wallabag-16fd1cce61a2b8fae4edce108d95f172c4dd32b1.tar.gz wallabag-16fd1cce61a2b8fae4edce108d95f172c4dd32b1.tar.zst wallabag-16fd1cce61a2b8fae4edce108d95f172c4dd32b1.zip |
[change] time for session
Diffstat (limited to 'inc')
-rw-r--r-- | inc/3rdparty/Session.class.php | 4 |
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; |