aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-09 01:37:46 -0700
committerFriendika <info@friendika.com>2011-09-09 01:37:46 -0700
commitf5c9de19d506ebadf09059f1c72d190ff98a9cdf (patch)
treeb2bb97c594d9587fb01c9281e40d4734c57339b2 /include/group.php
parent1e8b3278b0a72a370ca30f4295db1f3c4ea24f5f (diff)
downloadvolse-hubzilla-f5c9de19d506ebadf09059f1c72d190ff98a9cdf.tar.gz
volse-hubzilla-f5c9de19d506ebadf09059f1c72d190ff98a9cdf.tar.bz2
volse-hubzilla-f5c9de19d506ebadf09059f1c72d190ff98a9cdf.zip
network insecure warnings on feeds
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 8798adf5a..309949680 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)