commit | d444d445ed0458a352ecb9ff79ffd158677ee805 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Mon Oct 06 00:00:08 2014 +0300 |
committer | Andrey Andreev <narf@devilix.net> | Mon Oct 06 00:00:08 2014 +0300 |
tree | dcdbe4b38dbb343498b2ea2a37556cb358cd5720 | |
parent | 86d7eadf102c798f2aa70a86e86fd0f5050d9574 [diff] [blame] |
config_item() to return NULL instead of FALSE for non-existing items Close #3001 Close #3232 Related: #3244
diff --git a/system/core/Common.php b/system/core/Common.php index b5a696c..504e225 100644 --- a/system/core/Common.php +++ b/system/core/Common.php
@@ -289,7 +289,7 @@ $_config[0] =& get_config(); } - return isset($_config[0][$item]) ? $_config[0][$item] : FALSE; + return isset($_config[0][$item]) ? $_config[0][$item] : NULL; } }