Incorrect default timeout value fixed in core.php

pull/274/merge
iglocska 2014-04-28 14:50:47 +02:00
parent 1c9b621654
commit 8bb47c863d
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@
*
*/
Configure::write('Session', array(
'timeout' => 3600, // Session timeout, default is 1 hour
'timeout' => 60, // Session timeout, default is 1 hour
'defaults' => 'database'
));