From: Friendika Date: Fri, 9 Sep 2011 08:37:46 +0000 (-0700) Subject: network insecure warnings on feeds X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f5c9de19d506ebadf09059f1c72d190ff98a9cdf;p=friendica.git network insecure warnings on feeds --- diff --git a/include/group.php b/include/group.php index 8798adf5ab..309949680a 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` = '%s' OR `contact`.`notify` = '' )", + AND `contact`.`network` = '%s' AND `contact`.`notify` != '' )", intval($gid), intval(local_user()), dbesc(NETWORK_OSTATUS)