aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Settings_menu.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-01 08:38:17 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-01 08:38:17 +0100
commit844bef5070b071aa5ddf823036d2fe2285b40a7b (patch)
tree129a67cbed69c4ed6f286e9a0bf3770b9c82ffc6 /Zotlabs/Widget/Settings_menu.php
parent97e329906e3cde0bacafcceb94780bedd44f1f32 (diff)
parent6210b7727f6c8542daaa62d1ed7f9ec1f74323f2 (diff)
downloadvolse-hubzilla-844bef5070b071aa5ddf823036d2fe2285b40a7b.tar.gz
volse-hubzilla-844bef5070b071aa5ddf823036d2fe2285b40a7b.tar.bz2
volse-hubzilla-844bef5070b071aa5ddf823036d2fe2285b40a7b.zip
Merge branch 'dev' into 3.2RC
Diffstat (limited to 'Zotlabs/Widget/Settings_menu.php')
-rw-r--r--Zotlabs/Widget/Settings_menu.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Widget/Settings_menu.php b/Zotlabs/Widget/Settings_menu.php
index e15ed96a5..455fdcb9b 100644
--- a/Zotlabs/Widget/Settings_menu.php
+++ b/Zotlabs/Widget/Settings_menu.php
@@ -54,7 +54,7 @@ class Settings_menu {
}
$tabs[] = array(
- 'label' => t('Feature/Addon settings'),
+ 'label' => t('Addon settings'),
'url' => z_root().'/settings/featured',
'selected' => ((argv(1) === 'featured') ? 'active' : ''),
);
@@ -79,7 +79,7 @@ class Settings_menu {
'selected' => ''
);
- if(get_account_techlevel() > 0) {
+ if(feature_enabled(local_channel(),'oauth_clients')) {
$tabs[] = array(
'label' => t('Connected apps'),
'url' => z_root() . '/settings/oauth',
@@ -87,7 +87,7 @@ class Settings_menu {
);
}
- if(get_account_techlevel() > 2) {
+ if(feature_enabled(local_channel(),'access_tokens')) {
$tabs[] = array(
'label' => t('Guest Access Tokens'),
'url' => z_root() . '/settings/tokens',