diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-27 19:15:12 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-27 19:15:12 -0800 |
commit | f34e6d897766ab93a0c0dede9d89f5536c4f60e9 (patch) | |
tree | 0f622bcbabfeb814bcce86f51fad9c89db6b7f4c /Zotlabs/Widget | |
parent | 68c6d7a099e8615a135b75464e308c719bd9b0fe (diff) | |
download | volse-hubzilla-f34e6d897766ab93a0c0dede9d89f5536c4f60e9.tar.gz volse-hubzilla-f34e6d897766ab93a0c0dede9d89f5536c4f60e9.tar.bz2 volse-hubzilla-f34e6d897766ab93a0c0dede9d89f5536c4f60e9.zip |
move oauth_client management and guest access tokens to features rather than auto-enabling at various feature levels. This involves string changes and should *not* go into 3.2RC.
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Settings_menu.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Widget/Settings_menu.php b/Zotlabs/Widget/Settings_menu.php index e15ed96a5..20241a22f 100644 --- a/Zotlabs/Widget/Settings_menu.php +++ b/Zotlabs/Widget/Settings_menu.php @@ -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', |