Show
Ignore:
Timestamp:
10/22/2007 12:29:02 PM (14 months ago)
Author:
Shadowhand
Message:

Switching comments to Natural Docs. If you have ND installed, you can run makedocs.sh to generate a /user_guide/ directory.

Files:
1 modified

Legend:

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

    r647 r866  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    2 /** 
    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. 
     2/* 
     3 * File: Cookie 
     4 *  By default, cookie security is very relaxed. You are encouraged to set a 
     5 *  domain and path to add some security to your cookies. 
    76 * 
    8  * User Guide: http://kohanaphp.com/user_guide/en/general/cookies.html 
    9  * 
    10  * @param  string  prefix   - Prefix to avoid collisions 
    11  * @param  string  domain   - Domain to restrict cookie to 
    12  * @param  string  path     - Path to restrict cookie to 
    13  * @param  integer expire   - Liftime of cookie in seconds (0 = until browser closes) 
    14  * @param  boolean secure   - Only allow the cookie on HTTPS 
    15  * @param  boolean httponly - Only allow cookie access through the HTTP protocol 
    16  * 
     7 * Options: 
     8 *  prefix   - Prefix to avoid collisions, empty for no prefix 
     9 *  domain   - Domain to restrict cookie to, empty to allow any domain 
     10 *  path     - Path to restrict cookie to, empty to allow any path 
     11 *  expire   - Liftime of cookie in seconds, 0 for a single browser session 
     12 *  secure   - Enable or disable HTTPS-only access 
     13 *  httponly - Enable or disable HTTP-only access 
    1714 */ 
    1815$config = array