diff options
author | RedMatrix <info@friendica.com> | 2014-06-20 08:57:21 +1000 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-06-20 08:57:21 +1000 |
commit | 4c0b8bc637fe6773f8053b1672122c18a5788986 (patch) | |
tree | b0513171eccb338c55b7d1a50da0f67e6e8b6f65 /mod | |
parent | c012c648e0691868370a5a8c1eb468020fef6330 (diff) | |
parent | b20887995a2b3277659e01d99ae4de238f7175ef (diff) | |
download | volse-hubzilla-4c0b8bc637fe6773f8053b1672122c18a5788986.tar.gz volse-hubzilla-4c0b8bc637fe6773f8053b1672122c18a5788986.tar.bz2 volse-hubzilla-4c0b8bc637fe6773f8053b1672122c18a5788986.zip |
Merge pull request #498 from solstag/perms_pending
Implements a new permission level PERMS_PENDING
Diffstat (limited to 'mod')
-rw-r--r-- | mod/settings.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php index bdf30bae2..c72fdc8c4 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -792,7 +792,8 @@ function settings_content(&$a) { $perm_opts = array( array( t('Nobody except yourself'), 0), array( t('Only those you specifically allow'), PERMS_SPECIFIC), - array( t('Anybody in your address book'), PERMS_CONTACTS), + array( t('Approved connections'), PERMS_CONTACTS), + array( t('Any connections'), PERMS_PENDING), array( t('Anybody on this website'), PERMS_SITE), array( t('Anybody in this network'), PERMS_NETWORK), array( t('Anybody authenticated'), PERMS_AUTHED), |