diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:56:41 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:56:41 +0200 |
commit | 8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1 (patch) | |
tree | 2f95124f88bcd7d568f86d53f420190ae56e2178 /include/features.php | |
parent | e2ae8f0c4d83060b2606f03b1c86d040c3161f18 (diff) | |
parent | e530476e6c5d2319f3a0a09dfe73ec181e923325 (diff) | |
download | volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.tar.gz volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.tar.bz2 volse-hubzilla-8f4c3a2f88d3770e6cfebaa61671f54fa17a34e1.zip |
Merge branch 'dev' into make-db-upgrade-static-method
Diffstat (limited to 'include/features.php')
-rw-r--r-- | include/features.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/features.php b/include/features.php index d527f60e6..65ead6604 100644 --- a/include/features.php +++ b/include/features.php @@ -170,12 +170,20 @@ function get_features($filtered = true, $level = (-1)) { [ 'star_posts', t('Star Posts'), - t('Ability to mark special posts with a star indicator'), + t('Ability to mark conversations with a star'), false, Config::Get('feature_lock','star_posts'), ], [ + 'filing', + t('File Posts'), + t('Ability to file posts'), + false, + Config::Get('feature_lock','filing'), + ], + + [ 'reply_to', t('Reply on comment'), t('Ability to reply on selected comment'), |