diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-01 11:01:56 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-01 11:01:56 +0200 |
commit | 7dadf387e58ade457698dc2ffc58bbda7be46652 (patch) | |
tree | 6ab71dcdd332069d675ea170f98efa0c20bcd59f /include/features.php | |
parent | 8febcc27056fb6bae83a81c523047ec96d38489a (diff) | |
download | volse-hubzilla-7dadf387e58ade457698dc2ffc58bbda7be46652.tar.gz volse-hubzilla-7dadf387e58ade457698dc2ffc58bbda7be46652.tar.bz2 volse-hubzilla-7dadf387e58ade457698dc2ffc58bbda7be46652.zip |
indicate locked features
Diffstat (limited to 'include/features.php')
-rw-r--r-- | include/features.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/features.php b/include/features.php index a3395d7a8..ff0860f4d 100644 --- a/include/features.php +++ b/include/features.php @@ -47,7 +47,7 @@ function feature_level($feature,$def) { function process_module_features_get($uid, $features) { unset($features[0]); foreach($features as $f) { - $arr[] = array('feature_' . $f[0],$f[1],((intval(feature_enabled($uid, $f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On'))); + $arr[] = array('feature_' . $f[0],$f[1],((intval(feature_enabled($uid, $f[0]))) ? "1" : ''),$f[2], array(t('Off'),t('On')), (($f[4] === false) ? '' : 'disabled')); } return $arr; } |