summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Petculescu <gxgpet@gmail.com>2021-04-01 23:56:51 +0200
committerGeorge Petculescu <gxgpet@gmail.com>2021-04-01 23:56:51 +0200
commit4f6d9ba5b6b690f3b7b30c20926463d41117017a (patch)
tree7ab24be2a997a734476ec7075df7524a7d5bf076
parent78084aeac459aa1772db7094480008143fb82e7a (diff)
Rewording log_message() message
-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);