diff options
author | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-03-21 21:56:40 +0200 |
---|---|---|
committer | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-03-21 21:56:40 +0200 |
commit | 03832b45e1d29fe2c301ba34412e1de0ae4c57c0 (patch) | |
tree | e76195c36228026b80c7b33ebfc8501f80f67531 | |
parent | 028e34b6c40c3571d35c49d5a27b7eac19ceb4ef (diff) | |
download | wallabag-03832b45e1d29fe2c301ba34412e1de0ae4c57c0.tar.gz wallabag-03832b45e1d29fe2c301ba34412e1de0ae4c57c0.tar.zst wallabag-03832b45e1d29fe2c301ba34412e1de0ae4c57c0.zip |
fix of localhost cookie related to nginx binding to 0.0.0.0
-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 8c747558..59dfbe67 100644 --- a/inc/3rdparty/Session.class.php +++ b/inc/3rdparty/Session.class.php | |||
@@ -68,10 +68,10 @@ class Session | |||
68 | } | 68 | } |
69 | 69 | ||
70 | if ( $longlastingsession ) { | 70 | if ( $longlastingsession ) { |
71 | session_set_cookie_params(self::$longSessionTimeout, $cookiedir, $_SERVER['HTTP_HOST'], $ssl, true); | 71 | session_set_cookie_params(self::$longSessionTimeout, $cookiedir, null, $ssl, true); |
72 | } | 72 | } |
73 | else { | 73 | else { |
74 | session_set_cookie_params(0, $cookiedir, $_SERVER['HTTP_HOST'], $ssl, true); | 74 | session_set_cookie_params(0, $cookiedir, null, $ssl, true); |
75 | } | 75 | } |
76 | //set server side valid session timeout | 76 | //set server side valid session timeout |
77 | //WARNING! this may not work in shared session environment. See http://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime about min value: it can be set in any application | 77 | //WARNING! this may not work in shared session environment. See http://www.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime about min value: it can be set in any application |