Changeset 647 for trunk/application/config/cookie.php
- Timestamp:
- 10/04/2007 01:57:26 PM (14 months ago)
- Files:
-
- 1 modified
-
trunk/application/config/cookie.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/cookie.php
r644 r647 2 2 /** 3 3 * Cookie Configuration 4 * ---------------------------------------------------------------------------- 5 * By default, cookie security is very relaxed. You are encouraged to set a 6 * domain and path to add some security to your cookies. 7 * 8 * User Guide: http://kohanaphp.com/user_guide/en/general/cookies.html 4 9 * 5 10 * @param string prefix - Prefix to avoid collisions … … 9 14 * @param boolean secure - Only allow the cookie on HTTPS 10 15 * @param boolean httponly - Only allow cookie access through the HTTP protocol 16 * 11 17 */ 12 13 // ---------------------------------------------------------------------------- 14 15 $config['prefix'] = ''; 16 $config['domain'] = ''; 17 $config['path'] = '/'; 18 $config['expire'] = 0; 19 $config['secure'] = FALSE; 20 $config['httponly'] = FALSE;18 $config = array 19 ( 20 'prefix' => '', 21 'domain' => '', 22 'path' => '/', 23 'expire' => 0, 24 'secure' => FALSE, 25 'httponly' => FALSE 26 );
