diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-01-09 23:02:55 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-01-09 23:02:55 +0000 |
| commit | 0a67b836a9b5021c91b9c327d3693991c3248dfc (patch) | |
| tree | 91f49ca62a9ffd586e01bde700068f87e884181a /system/config/cookie.php | |
| parent | 232c0b7fd0df7f84543bc29380a0734ef1e84a02 (diff) | |
| parent | bd9f945e3f2de4ea2402bd3941dba69c79ddc5a4 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'system/config/cookie.php')
| -rw-r--r-- | system/config/cookie.php | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/system/config/cookie.php b/system/config/cookie.php index d370ecf0..5340f05d 100644 --- a/system/config/cookie.php +++ b/system/config/cookie.php @@ -1,38 +1,55 @@ <?php defined('SYSPATH') OR die('No direct access allowed.'); /** - * @package Core + * Cookie config settings. These are the default settings used by the [cookie] + * helper. You can override these settings by passing parameters to the cookie + * helper functions. * + * @package Kohana + * @author Kohana Team + * @copyright (c) 2007-2009 Kohana Team + * @license http://kohanaphp.com/license + */ + +/** * Domain, to restrict the cookie to a specific website domain. For security, * you are encouraged to set this option. An empty setting allows the cookie * to be read by any website domain. + * @default '' */ $config['domain'] = ''; /** * Restrict cookies to a specific path, typically the installation directory. + * @default '/' */ $config['path'] = '/'; /** * Lifetime of the cookie. A setting of 0 makes the cookie active until the * users browser is closed or the cookie is deleted. + * @default = 0 */ $config['expire'] = 0; /** * Enable this option to only allow the cookie to be read when using the a * secure protocol. + * @default FALSE */ $config['secure'] = FALSE; /** * Enable this option to make the cookie accessible only through the * HTTP protocol (e.g. no javascript access). This is not supported by all browsers. + * @default FALSE */ $config['httponly'] = FALSE; /** * Cookie salt for signed cookies. * Make sure you change this to a unique value. + * + * [!!] Changing this value will invalidate all existing cookies! + * @default 'K0hAN4 15 Th3 B357' */ $config['salt'] = 'K0hAN4 15 Th3 B357';
\ No newline at end of file |
