diff options
author | Andrey Andreev <narf@devilix.net> | 2014-10-05 23:00:08 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-10-05 23:00:08 +0200 |
commit | d444d445ed0458a352ecb9ff79ffd158677ee805 (patch) | |
tree | dcdbe4b38dbb343498b2ea2a37556cb358cd5720 /system/core/Input.php | |
parent | 86d7eadf102c798f2aa70a86e86fd0f5050d9574 (diff) |
config_item() to return NULL instead of FALSE for non-existing items
Close #3001
Close #3232
Related: #3244
Diffstat (limited to 'system/core/Input.php')
-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 ada9fc680..9ae2f6d6f 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -353,7 +353,7 @@ class CI_Input { $path = config_item('cookie_path'); } - if ($secure === FALSE && config_item('cookie_secure') !== FALSE) + if ($secure === FALSE && config_item('cookie_secure') === TRUE) { $secure = config_item('cookie_secure'); } |