Skip to content
Snippets Groups Projects
Commit 92560c5b authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #7243 from owncloud/core-sessionlifetimedefault

Now using PHP session lifetime as default value for the JS config
parents 5d3fc037 f9763e1f
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ $array = array( ...@@ -57,7 +57,7 @@ $array = array(
"firstDay" => json_encode($l->l('firstday', 'firstday')) , "firstDay" => json_encode($l->l('firstday', 'firstday')) ,
"oc_config" => json_encode( "oc_config" => json_encode(
array( array(
'session_lifetime' => \OCP\Config::getSystemValue('session_lifetime', 60 * 60 * 24), 'session_lifetime' => \OCP\Config::getSystemValue('session_lifetime', ini_get('session.gc_maxlifetime')),
'session_keepalive' => \OCP\Config::getSystemValue('session_keepalive', true) 'session_keepalive' => \OCP\Config::getSystemValue('session_keepalive', true)
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment