Update core.default.php

flipped 'autoRegenerate' sessions. This setting wants to be off for production machines.
pull/3417/head
Steve Clement 2018-06-30 14:14:49 +08:00 committed by GitHub
parent 91cd6b9079
commit 0471ffe909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ define('LOG_ERROR', LOG_ERR);
Configure::write('Session', array(
'timeout' => 60, // Session timeout, default is 1 hour
'defaults' => 'php',
'autoRegenerate' => true
'autoRegenerate' => false
));
/**