diff options
author | Friendika <info@friendika.com> | 2011-04-26 05:45:53 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-26 05:45:53 -0700 |
commit | a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d (patch) | |
tree | 9761b981716716c37ffc847ceb7576ba7c4de322 /mod/contacts.php | |
parent | 7bf85eadb2cabedf955046722d1ff45e0f160421 (diff) | |
download | volse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.tar.gz volse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.tar.bz2 volse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.zip |
no insecure warning on FB connections
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index a1219f94d..c22bc3c83 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -285,7 +285,7 @@ function contacts_content(&$a) { '$contact_id' => $r[0]['id'], '$block_text' => (($r[0]['blocked']) ? t('Unblock this contact') : t('Block this contact') ), '$ignore_text' => (($r[0]['readonly']) ? t('Unignore this contact') : t('Ignore this contact') ), - '$insecure' => (($r[0]['network'] !== NETWORK_DFRN && $r[0]['network'] !== NETWORK_MAIL) ? $insecure : ''), + '$insecure' => (($r[0]['network'] !== NETWORK_DFRN && $r[0]['network'] !== NETWORK_MAIL && $r[0]['network'] !== NETWORK_FACEBOOK) ? $insecure : ''), '$info' => $r[0]['info'], '$blocked' => (($r[0]['blocked']) ? '<div id="block-message">' . t('Currently blocked') . '</div>' : ''), '$ignored' => (($r[0]['readonly']) ? '<div id="ignore-message">' . t('Currently ignored') . '</div>' : ''), |