diff options
author | friendica <info@friendica.com> | 2014-02-18 20:59:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-18 20:59:25 -0800 |
commit | 24d119b8c4e94ed130577e4e4a8d17ea13c406ac (patch) | |
tree | 96327bd990038c66f0e644c505522cb424a1bbd0 /mod/settings.php | |
parent | 6ac81c936077caa7167ddc3a2eb3c1022826d5d9 (diff) | |
download | volse-hubzilla-24d119b8c4e94ed130577e4e4a8d17ea13c406ac.tar.gz volse-hubzilla-24d119b8c4e94ed130577e4e4a8d17ea13c406ac.tar.bz2 volse-hubzilla-24d119b8c4e94ed130577e4e4a8d17ea13c406ac.zip |
introduce a new privacy level "PERMS_AUTHED" to indicate somebody that is able to successfully authenticate (but is not necessarily in this network).
Diffstat (limited to 'mod/settings.php')
-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 97965d0fd..5b0a8e8f2 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -798,6 +798,7 @@ function settings_content(&$a) { array( t('Anybody in your address book'), PERMS_CONTACTS), array( t('Anybody on this website'), PERMS_SITE), array( t('Anybody in this network'), PERMS_NETWORK), + array( t('Anybody authenticated'), PERMS_AUTHED), array( t('Anybody on the internet'), PERMS_PUBLIC) ); @@ -979,7 +980,7 @@ function settings_content(&$a) { '$h_descadvn' => t('Change the behaviour of this account for special situations'), '$pagetype' => $pagetype, '$expert' => feature_enabled(local_user(),'expert'), - '$hint' => t('Please enable expert mode (in Settings > Additional features) to adjust!'), + '$hint' => t('Please enable expert mode (in <a href="settings/features">Settings > Additional features</a>) to adjust!'), )); |