diff options
author | Andrey Andreev <narf@devilix.net> | 2022-01-15 14:09:45 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-01-15 14:09:45 +0100 |
commit | 6a7254ca653b08e2b73ffd58b18c2bf70b8bd35e (patch) | |
tree | e006d9ad108a51595d63a2133e52268c1e2c858e /system/libraries/Session/Session.php | |
parent | 274f2f2acd48595a41416491f95c12300cd906e0 (diff) |
[ci skip] Fix a coding typo from 1a2651040ef701e750b1c13cd69cc70814b079d0
Diffstat (limited to 'system/libraries/Session/Session.php')
-rw-r--r-- | system/libraries/Session/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Session/Session.php b/system/libraries/Session/Session.php index 8d3ba2857..68dc0ab63 100644 --- a/system/libraries/Session/Session.php +++ b/system/libraries/Session/Session.php @@ -182,7 +182,7 @@ class CI_Session { if ( ! $this->_config['cookie_secure'] && $this->_config['cookie_samesite'] === 'None') { - log_message('error', 'Session:', $this->_config['cookie_name'].' cookie sent with SameSite=None, but without Secure attribute.'); + log_message('error', "Session: '".$this->_config['cookie_name']."' cookie sent with SameSite=None, but without Secure attribute.'"); } } |