diff options
author | Andy Staudacher <andy.st@gmail.com> | 2010-02-14 17:26:57 -0800 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2010-02-14 17:26:57 -0800 |
commit | 0eb9b43a3388b1de801cc4ffdfcbcc0e0d236858 (patch) | |
tree | 62e0e043081e889ac9b2adac166ec2548ec2d7eb /modules/gallery/config | |
parent | 7abaef3ef212baeeab4fa32e98d1cc6c5d501ffe (diff) |
Enable session expiration. Currently, it's set to expire sessions after 7 days of inactivity.
Diffstat (limited to 'modules/gallery/config')
-rw-r--r-- | modules/gallery/config/session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/config/session.php b/modules/gallery/config/session.php index 990fa31f..6905e299 100644 --- a/modules/gallery/config/session.php +++ b/modules/gallery/config/session.php @@ -39,7 +39,7 @@ $config['name'] = 'g3sid'; /** * Session parameters to validate: user_agent, ip_address, expiration. */ -$config['validate'] = array('user_agent'); +$config['validate'] = array('user_agent', 'expiration'); /** * Enable or disable session encryption. |