Show
Ignore:
Timestamp:
10/04/08 11:10:40 (3 months ago)
Author:
anatoo
Message:

クッキー周り修正

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • events/phpframework/plain_php/trunk/core/ApplicationContext.php

    r20610 r20666  
    33class ApplicationContext 
    44 
    5     protected $baseUrl, $basePath, $templateBaseUrl, $templateBasePath, $dsn, $dbUser, $dbPassword, $cookieDomain, $cookiePath; 
     5    protected $baseUrl, $basePath, $templateBaseUrl, $templateBasePath, $dsn, $dbUser, $dbPassword; 
    66    function __get($name) 
    77    { 
     
    4747    } 
    4848 
    49     function setCookiePath($v) 
    50     { 
    51         $this->cookiePath = $v; 
    52         return $this; 
    53     } 
    54     function setCookieDomain($v) 
    55     { 
    56         $this->cookieDomain = $v; 
    57         return $this; 
    58     } 
    5949}