Good looking and better performance

This commit is contained in:
Michael 2017-11-26 13:12:54 +00:00
parent 774a7193d2
commit e4995dbad5
1 changed files with 6 additions and 2 deletions

View File

@ -16,10 +16,14 @@ use Friendica\Core\PConfig;
function feature_enabled($uid, $feature) {
$x = Config::get('feature_lock', $feature, false);
if ($x === false) {
$x = PConfig::get($uid, 'feature', $feature, false);
}
if ($x === false) {
$x = Config::get('feature', $feature, false);
}
if ($x === false) {
$x = get_feature_default($feature);
$x = Config::get('feature', $feature, $x);
$x = PConfig::get($uid, 'feature', $feature, $x);
}
$arr = array('uid' => $uid, 'feature' => $feature, 'enabled' => $x);