From 78084aeac459aa1772db7094480008143fb82e7a Mon Sep 17 00:00:00 2001 From: George Petculescu Date: Fri, 2 Apr 2021 00:55:55 +0300 Subject: Space after ! op --- system/core/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') diff --git a/system/core/Input.php b/system/core/Input.php index 9bde8a4f6..a2cc23936 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -360,7 +360,7 @@ class CI_Input { $samesite = 'Lax'; } - if ($samesite === 'None' && !$secure) + if ($samesite === 'None' && ! $secure) { log_message('error', $name.' is a non-secure cookie sent with SameSite=None. It can be discarded by the browser.'); } -- cgit v1.2.3-24-g4f1b