diff options
author | alecpl <alec@alec.pl> | 2009-11-23 14:21:34 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-11-23 14:21:34 +0000 |
commit | c96c5a98af8b9374010ebb692c89f82d67faf72e (patch) | |
tree | 4d5a311550042eda6385aef2bb19fcf2f64c0ddd /program/include | |
parent | bc6ac4d3c99c55d6b7cb8a3533f62ba5493165e1 (diff) |
- use 7th (httponly) argument of setcookie()
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail.php | 2 |
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); } } |