summaryrefslogtreecommitdiff
path: root/program/include/rcmail.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-11-23 14:21:34 +0000
committeralecpl <alec@alec.pl>2009-11-23 14:21:34 +0000
commitc96c5a98af8b9374010ebb692c89f82d67faf72e (patch)
tree4d5a311550042eda6385aef2bb19fcf2f64c0ddd /program/include/rcmail.php
parentbc6ac4d3c99c55d6b7cb8a3533f62ba5493165e1 (diff)
- use 7th (httponly) argument of setcookie()
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 2c002b15c..f707e3571 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -1063,7 +1063,7 @@ class rcmail
{
$cookie = session_get_cookie_params();
setcookie($name, $value, $exp, $cookie['path'], $cookie['domain'],
- rcube_https_check());
+ rcube_https_check(), true);
}
}