summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Petculescu <gxgpet@gmail.com>2021-04-01 23:55:55 +0200
committerGeorge Petculescu <gxgpet@gmail.com>2021-04-01 23:55:55 +0200
commit78084aeac459aa1772db7094480008143fb82e7a (patch)
tree22616c0d05b7a6fb2091361d49fddc2ea3730cce
parent2abda9049a8d006673204f56f4680526232b2360 (diff)
Space after ! op
-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 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.');
}