From a8a31899892fa0212d61d0eeab99baa2510bc39d Mon Sep 17 00:00:00 2001 From: predominant Date: Thu, 6 May 2010 23:35:38 +1000 Subject: [PATCH] Update default core.php to include instructions for Session names. --- app/config/core.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/config/core.php b/app/config/core.php index 66ca1b2d2..2a9c640f5 100644 --- a/app/config/core.php +++ b/app/config/core.php @@ -158,6 +158,12 @@ /** * The name of CakePHP's session cookie. + * + * Note the guidelines for Session names states: "The session name references + * the session id in cookies and URLs. It should contain only alphanumeric + * characters; it should be short and descriptive (i.e. for users with enabled + * cookie warnings). " + * @link http://au.php.net/session_name */ Configure::write('Session.cookie', 'CAKEPHP');