Update default core.php to include instructions for Session names.

This commit is contained in:
predominant 2010-05-06 23:35:38 +10:00
parent 5ea4f027db
commit a8a3189989

View file

@ -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');