diff options
author | friendica <info@friendica.com> | 2014-08-07 18:22:50 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-07 18:22:50 -0700 |
commit | a7d95108d04d057b6c07984f46647be7d708632a (patch) | |
tree | 7cc6039deb1125921f03ea5a8f57f33d6cfd7976 /mod | |
parent | f412f6a654992aa79738db23737239ccde6207a6 (diff) | |
download | volse-hubzilla-a7d95108d04d057b6c07984f46647be7d708632a.tar.gz volse-hubzilla-a7d95108d04d057b6c07984f46647be7d708632a.tar.bz2 volse-hubzilla-a7d95108d04d057b6c07984f46647be7d708632a.zip |
cleanup some text where we said "public" or "visible to anybody on the internet" when that isn't necessarily true.
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profiles.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/profiles.php b/mod/profiles.php index bcaae909b..791f93465 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -518,6 +518,7 @@ function profiles_content(&$a) { $o = ''; + $channel = $a->get_channel(); if(! local_user()) { notice( t('Permission denied.') . EOL); @@ -634,7 +635,8 @@ function profiles_content(&$a) { '$baseurl' => $a->get_baseurl(true), '$profile_id' => $r[0]['id'], '$profile_name' => $r[0]['profile_name'], - '$default' => (($is_default) ? '<p id="profile-edit-default-desc">' . t('This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.') . '</p>' : ""), + '$is_default' => $is_default, + '$default' => t('This is your default profile.') . EOL . translate_scope(map_scope($channel['channel_r_profile'])), '$advanced' => $advanced, '$name' => $r[0]['name'], '$pdesc' => $r[0]['pdesc'], |