summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/core/Input.php2
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);