diff options
author | George Petculescu <gxgpet@gmail.com> | 2021-04-01 23:56:51 +0200 |
---|---|---|
committer | George Petculescu <gxgpet@gmail.com> | 2021-04-01 23:56:51 +0200 |
commit | 4f6d9ba5b6b690f3b7b30c20926463d41117017a (patch) | |
tree | 7ab24be2a997a734476ec7075df7524a7d5bf076 /system/core | |
parent | 78084aeac459aa1772db7094480008143fb82e7a (diff) |
Rewording log_message() message
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index a2cc23936..fbe9c59b0 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -362,7 +362,7 @@ class CI_Input { if ($samesite === 'None' && ! $secure) { - log_message('error', $name.' is a non-secure cookie sent with SameSite=None. It can be discarded by the browser.'); + log_message('error', $name.' cookie sent with SameSite=None, but without Secure attribute.'); } $cookie_header = 'Set-Cookie: '.$prefix.$name.'='.rawurlencode($value); |