From f5bf4c555294c2255449b8cc9d17d2329bac5c24 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 26 Jul 2010 22:42:00 -0400 Subject: [PATCH] Changing config value name to more accurately represent what it does. --- app/config/core.php | 4 ++-- cake/console/templates/skel/config/core.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/config/core.php b/app/config/core.php index 491e3adbd47..24bd381c384 100644 --- a/app/config/core.php +++ b/app/config/core.php @@ -127,8 +127,8 @@ * - `Session.handler` - Can be used to enable a custom session handler. Expects an array of of callables, * that can be used with `session_save_handler`. Using this option will automatically add `session.save_handler` * to the ini array. - * - `Session.harden` - Enabling this setting, turns on automatic renewal of sessions, and - * sessionids that change frequently. + * - `Session.autoRegenerate` - Enabling this setting, turns on automatic renewal of sessions, and + * sessionids that change frequently. See CakeSession::$requestCountdown. * - `Session.ini` - An associative array of additional ini values to set. * * The built in defaults are: diff --git a/cake/console/templates/skel/config/core.php b/cake/console/templates/skel/config/core.php index 491e3adbd47..c018d8b9957 100644 --- a/cake/console/templates/skel/config/core.php +++ b/cake/console/templates/skel/config/core.php @@ -127,8 +127,8 @@ * - `Session.handler` - Can be used to enable a custom session handler. Expects an array of of callables, * that can be used with `session_save_handler`. Using this option will automatically add `session.save_handler` * to the ini array. - * - `Session.harden` - Enabling this setting, turns on automatic renewal of sessions, and - * sessionids that change frequently. + * - `Session.autoRegenerate` - Enabling this setting, turns on automatic regeneration of sessions, and + * sessionids that change frequently. See CakeSession::$requestCountdown. * - `Session.ini` - An associative array of additional ini values to set. * * The built in defaults are: