Searched refs:httponly (Results 1 – 3 of 3) sorted by relevance
/plugin/ckgedit/scripts/ |
H A D | setsamesite.php | 6 …function setcookieSameSite($name, $value, $expire=0, $path ='/', $domain="", $httponly="HttpOnly",… argument 9 … setcookie($name, $value, $expire, "$path; samesite=$samesite", $domain, $secure, $httponly); 18 'httponly' => $httponly,
|
/plugin/authucenter/lib/api/ |
H A D | uc.php | 354 function uc_setcookie($var, $value = '', $life = 0, $httponly = false) { argument 366 $path = $httponly && PHP_VERSION < '5.2.0' ? DW_UC_COOKIE_PATH.'; HttpOnly' : DW_UC_COOKIE_PATH; 372 setcookie($var, $value, $life, $path, DW_UC_COOKIE_DOMAIN, $secure, $httponly);
|
/plugin/authucenter/ |
H A D | auth.php | 466 private function _uc_setcookie($var, $value = '', $life = 0, $httponly = false) { argument 478 …$path = $httponly && PHP_VERSION < '5.2.0' ? $this->getConf('cookiepath').'; HttpOnly' : $this->ge… 484 … setcookie($var, $value, $life, $path, $this->getConf('cookiedomain'), $secure, $httponly);
|