From 8bb47c863dc5a1494cb0a4c2802ad1eec87fb085 Mon Sep 17 00:00:00 2001 From: iglocska Date: Mon, 28 Apr 2014 14:50:47 +0200 Subject: [PATCH] Incorrect default timeout value fixed in core.php --- app/Config/core.default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/core.default.php b/app/Config/core.default.php index fb5a68db9..f5cd5dd75 100644 --- a/app/Config/core.default.php +++ b/app/Config/core.default.php @@ -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' ));