diff options
author | friendica <info@friendica.com> | 2013-08-09 04:00:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-09 04:00:34 -0700 |
commit | 89ad8ad80f3907b3850f45e42bb70424a223ed71 (patch) | |
tree | 3c791060392008d329e012a9efc6ee1851a9494e /mod | |
parent | ec3e3922b8da42823e6d933a6964639c4bb5634a (diff) | |
download | volse-hubzilla-89ad8ad80f3907b3850f45e42bb70424a223ed71.tar.gz volse-hubzilla-89ad8ad80f3907b3850f45e42bb70424a223ed71.tar.bz2 volse-hubzilla-89ad8ad80f3907b3850f45e42bb70424a223ed71.zip |
string parse error extracting one particular string
Diffstat (limited to 'mod')
-rw-r--r-- | mod/connections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/connections.php b/mod/connections.php index 2ad9342b8..8f779bca5 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -407,7 +407,7 @@ function connections_content(&$a) { '$unapproved' => $unapproved, '$approve' => t('Approve this connection'), '$noperms' => (((! $self) && (! $contact['abook_my_perms'])) ? t('Connection has no individual permissions!') : ''), - '$noperm_desc' => (((! $self) && (! $contact['abook_my_perms'])) ? t('This may be appropriate based on your <a href="settings">privacy settings</a>, though you may wish to review the "Advanced Permissions"') : ''), + '$noperm_desc' => (((! $self) && (! $contact['abook_my_perms'])) ? t('This may be appropriate based on your <a href="settings">privacy settings</a>, though you may wish to review the "Advanced Permissions".') : ''), '$submit' => t('Submit'), '$lbl_vis1' => t('Profile Visibility'), '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['xchan_name']), |