aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-26 05:45:53 -0700
committerFriendika <info@friendika.com>2011-04-26 05:45:53 -0700
commita01c40a845ae96d44ca58859cb2bc54ad6cd0b3d (patch)
tree9761b981716716c37ffc847ceb7576ba7c4de322 /include/group.php
parent7bf85eadb2cabedf955046722d1ff45e0f160421 (diff)
downloadvolse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.tar.gz
volse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.tar.bz2
volse-hubzilla-a01c40a845ae96d44ca58859cb2bc54ad6cd0b3d.zip
no insecure warning on FB connections
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/group.php b/include/group.php
index 5dca08c76..8866104fc 100644
--- a/include/group.php
+++ b/include/group.php
@@ -124,7 +124,7 @@ function group_public_members($gid) {
$r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member`
LEFT JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id`
WHERE `gid` = %d AND `group_member`.`uid` = %d
- AND `contact`.`network` != 'dfrn' AND `contact`.`network` != 'mail' ",
+ AND `contact`.`network` != 'dfrn' AND `contact`.`network` != 'mail' AND `contact`.`network` != 'face' ",
intval($gid),
intval(local_user())
);