]> git.mxchange.org Git - friendica.git/blobdiff - include/group.php
ability to hide profile and wall from unknown people
[friendica.git] / include / group.php
index 5dca08c76bd7357d97a823c72edcc8c83156ec27..8866104fca54a58ad49bfded919bb220e6633158 100644 (file)
@@ -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())
                );