aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 83828a0df..8dd7c7440 100644
--- a/boot.php
+++ b/boot.php
@@ -605,10 +605,12 @@ if(! function_exists('get_config')) {
function get_config($family, $key, $instore = false) {
global $a;
+
if(! $instore) {
if(isset($a->config[$family][$key])) {
- if($a->config[$family][$key] == '!<unset>!')
+ if($a->config[$family][$key] === '!<unset>!') {
return false;
+ }
return $a->config[$family][$key];
}
}