Show
Ignore:
Timestamp:
10/04/2007 01:57:26 PM (14 months ago)
Author:
Shadowhand
Message:

Overhauled User_Agent almost completely.

Spit shine on the rest of it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/application/config/cookie.php

    r644 r647  
    22/** 
    33 * 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 
    49 * 
    510 * @param  string  prefix   - Prefix to avoid collisions 
     
    914 * @param  boolean secure   - Only allow the cookie on HTTPS 
    1015 * @param  boolean httponly - Only allow cookie access through the HTTP protocol 
     16 * 
    1117 */ 
    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);