]> git.mxchange.org Git - friendica.git/commitdiff
network insecure warnings on feeds
authorFriendika <info@friendika.com>
Fri, 9 Sep 2011 08:37:46 +0000 (01:37 -0700)
committerFriendika <info@friendika.com>
Fri, 9 Sep 2011 08:37:46 +0000 (01:37 -0700)
include/group.php

index 8798adf5ab3a2e20b0b6a7e1c50ad5dacf1a3207..309949680aa7f4cddf6989f96888f6fc3bf19ee3 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` = '%s' OR `contact`.`notify` = '' )",
+                       AND  `contact`.`network` = '%s' AND `contact`.`notify` != '' )",
                        intval($gid),
                        intval(local_user()),
                        dbesc(NETWORK_OSTATUS)