diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-30 14:02:58 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-30 14:02:58 +0200 |
commit | 9fcb3bf2e8fab84f9144eecceaf984b2026e6d08 (patch) | |
tree | 3f2cf1dff4624af24fc5b7884c0094f2e4db1dd4 /include/features.php | |
parent | 7d088c8d565e0ac88f6640b69518a1aba323b20f (diff) | |
download | volse-hubzilla-9fcb3bf2e8fab84f9144eecceaf984b2026e6d08.tar.gz volse-hubzilla-9fcb3bf2e8fab84f9144eecceaf984b2026e6d08.tar.bz2 volse-hubzilla-9fcb3bf2e8fab84f9144eecceaf984b2026e6d08.zip |
first cut on restructuring the previously called network tabs
Diffstat (limited to 'include/features.php')
-rw-r--r-- | include/features.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/features.php b/include/features.php index 616e3f6c5..3d3e41a05 100644 --- a/include/features.php +++ b/include/features.php @@ -386,21 +386,21 @@ function get_features($filtered = true, $level = (-1)) { ], [ - 'personal_tab', - t('Network Personal Tab'), - t('Enable tab to display only Network posts that you\'ve interacted on'), + 'order_tab', + t('Alternate Stream Order'), + t('Ability to order the stream by last post date, last comment date or unthreaded activities'), false, - get_config('feature_lock','personal_tab'), - feature_level('personal_tab',1), + get_config('feature_lock','order_tab'), + feature_level('order_tab',2), ], [ - 'new_tab', - t('Network New Tab'), - t('Enable tab to display all new Network activity'), + 'personal_tab', + t('Network Personal Tab'), + t('Enable tab to display only Network posts that you\'ve interacted on'), false, - get_config('feature_lock','new_tab'), - feature_level('new_tab',2), + get_config('feature_lock','personal_tab'), + feature_level('personal_tab',1), ], [ |