Show
Ignore:
Timestamp:
11/05/06 00:50:01 (2 years ago)
Author:
dominik
Message:

more documentation fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/response/AgaviWebResponse.class.php

    r1075 r1239  
    367367   * @param      string A HTTP header field name. 
    368368   * 
    369    * @return     array All values set for that header, or null if no headers set 
     369   * @return     bool true if the header exists, false otherwise. 
    370370   * 
    371371   * @author     David Zuelke <dz@bitxtender.com> 
     
    412412   * @param      mixed Data to store into a cookie. If null or empty cookie 
    413413   *                   will be tried to be removed. 
    414    * @param      array Cookie parameters (parameters from config or defaults 
    415    *                   are used for any missing parameters). 
     414   * @param      int    The lifetime of the cookie in seconds. When you pass 0  
     415   *                    the cookie will be valid until the  browser gets closed. 
     416   * @param      string The path on the server the cookie will be available on. 
     417   * @param      string The domain the cookie is available on. 
     418   * @param      bool   Indicates that the cookie should only be transmitted  
     419   *                    over a secure HTTPS connection. 
     420   * @param      bool   Whether the cookie will be made accessible only through 
     421   *                    the HTTP protocol. 
    416422   * 
    417423   * @author     Veikko Makinen <mail@veikkomakinen.com>