aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-26 16:30:21 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-26 16:30:21 -0700
commitb91494d22ec1bcf7724f36c1df90d83178f6e47f (patch)
tree689ef1382e8e9c6a6fe98b59f6d7ece26ffce341 /boot.php
parent0ebd4aa78303792a97c111229080224ba1bcf2de (diff)
downloadvolse-hubzilla-b91494d22ec1bcf7724f36c1df90d83178f6e47f.tar.gz
volse-hubzilla-b91494d22ec1bcf7724f36c1df90d83178f6e47f.tar.bz2
volse-hubzilla-b91494d22ec1bcf7724f36c1df90d83178f6e47f.zip
preliminary network abstraction, configurable debugging.
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];
}
}