diff options
author | redmatrix <git@macgirvin.com> | 2016-04-10 16:56:08 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-10 16:56:08 -0700 |
commit | abfbe9c9375c7505e0422b8adc1d9d5426d7df1a (patch) | |
tree | 5fdc9b9b7edbc4f73fd36cfde9d905e335089cb9 /Zotlabs/Web/SessionHandler.php | |
parent | c0bdcfedeb8c5b8753587ac77d5b90d48698ec66 (diff) | |
download | volse-hubzilla-abfbe9c9375c7505e0422b8adc1d9d5426d7df1a.tar.gz volse-hubzilla-abfbe9c9375c7505e0422b8adc1d9d5426d7df1a.tar.bz2 volse-hubzilla-abfbe9c9375c7505e0422b8adc1d9d5426d7df1a.zip |
a few issues: block public not blocking mod_cal, typo in sql for one clone file sync operation, fix_system_urls not catching cached contact photos, extend sessionhandler expiration when remember_me is enabled as the stored session is expiring long before the browser session.
Diffstat (limited to 'Zotlabs/Web/SessionHandler.php')
-rw-r--r-- | Zotlabs/Web/SessionHandler.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Web/SessionHandler.php b/Zotlabs/Web/SessionHandler.php index ede2bd609..670e8f216 100644 --- a/Zotlabs/Web/SessionHandler.php +++ b/Zotlabs/Web/SessionHandler.php @@ -35,7 +35,12 @@ class SessionHandler implements \SessionHandlerInterface { return false; } - $expire = time() + $this->session_expire; + // Can't just use $data here because we can't be certain of the serialisation algorithm + + if($_SESSION && array_key_exists('remember_me',$_SESSION) && intval($_SESSION['remember_me'])) + $expire = time() + (60 * 60 * 24 * 365); + else + $expire = time() + $this->session_expire; $default_expire = time() + 300; if($this->session_exists) { |