Enable session expiration. Currently, it's set to expire sessions after 7 days of inactivity.

This commit is contained in:
Andy Staudacher
2010-02-14 17:26:57 -08:00
parent 7abaef3ef2
commit 0eb9b43a33

View File

@@ -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.