preliminary network abstraction, configurable debugging.

This commit is contained in:
Mike Macgirvin 2010-09-26 16:30:21 -07:00
parent 0ebd4aa783
commit b91494d22e
10 changed files with 176 additions and 141 deletions

View file

@ -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];
}
}