diff options
author | Andrey Andreev <narf@devilix.net> | 2022-01-07 12:05:23 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-01-07 12:05:23 +0100 |
commit | 9e73ec49c324a2954761d8938839eeb4622f068f (patch) | |
tree | 24acdeb14044e058ea7ad757369e4680226dab7f /system/libraries/Session | |
parent | a4ad60e91d8da62a04c7f2bfc9c50c611f858352 (diff) | |
parent | 3853472a6ea2db4fbaf7d259184245b35b004fdf (diff) |
Merge branch '3.1-stable' into develop
Diffstat (limited to 'system/libraries/Session')
-rw-r--r-- | system/libraries/Session/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php index f370f7f19..5a5fc8766 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -325,7 +325,7 @@ class CI_Session { 'path' => $params['cookie_path'], 'domain' => $params['cookie_domain'], 'secure' => $params['cookie_secure'], - 'httponly' => $params['cookie_httponly'], + 'httponly' => TRUE, 'samesite' => $params['cookie_samesite'] )); } |