diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-02-19 22:28:21 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-02-19 22:28:21 +0100 |
commit | 02e82e496e3ec8dbd8264248ad8550dd5e335cba (patch) | |
tree | ba88a936dff8de1333a14c5c265e0314c0a12e41 /include/permissions.php | |
parent | 5a7b994e59306519574ce7aaa004f08d7d47ee05 (diff) | |
download | volse-hubzilla-02e82e496e3ec8dbd8264248ad8550dd5e335cba.tar.gz volse-hubzilla-02e82e496e3ec8dbd8264248ad8550dd5e335cba.tar.bz2 volse-hubzilla-02e82e496e3ec8dbd8264248ad8550dd5e335cba.zip |
pimp up mod new_channel
Diffstat (limited to 'include/permissions.php')
-rw-r--r-- | include/permissions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/permissions.php b/include/permissions.php index 8c36f9744..e4cd9ddda 100644 --- a/include/permissions.php +++ b/include/permissions.php @@ -864,10 +864,10 @@ function get_role_perms($role) { */ function get_roles() { $roles = array( - t('Social Networking') => array('social' => t('Mostly Public'), 'social_restricted' => t('Restricted'), 'social_private' => t('Private')), - t('Community Forum') => array('forum' => t('Mostly Public'), 'forum_restricted' => t('Restricted'), 'forum_private' => t('Private')), - t('Feed Republish') => array('feed' => t('Mostly Public'), 'feed_restricted' => t('Restricted')), - t('Special Purpose') => array('soapbox' => t('Celebrity/Soapbox'), 'repository' => t('Group Repository')), + t('Social Networking') => array('social' => t('Social - Mostly Public'), 'social_restricted' => t('Social - Restricted'), 'social_private' => t('Social - Private')), + t('Community Forum') => array('forum' => t('Forum - Mostly Public'), 'forum_restricted' => t('Forum - Restricted'), 'forum_private' => t('Forum - Private')), + t('Feed Republish') => array('feed' => t('Feed - Mostly Public'), 'feed_restricted' => t('Feed - Restricted')), + t('Special Purpose') => array('soapbox' => t('Special - Celebrity/Soapbox'), 'repository' => t('Special - Group Repository')), t('Other') => array('custom' => t('Custom/Expert Mode')) ); |