diff options
author | George Petculescu <gxgpet@gmail.com> | 2021-04-01 23:55:55 +0200 |
---|---|---|
committer | George Petculescu <gxgpet@gmail.com> | 2021-04-01 23:55:55 +0200 |
commit | 78084aeac459aa1772db7094480008143fb82e7a (patch) | |
tree | 22616c0d05b7a6fb2091361d49fddc2ea3730cce /system/core | |
parent | 2abda9049a8d006673204f56f4680526232b2360 (diff) |
Space after ! op
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 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.'); } |