diff options
author | Friendika <info@friendika.com> | 2011-04-17 23:27:11 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-17 23:27:11 -0700 |
commit | ab099e91028122dfb6b10cf9510b1b061f6f547f (patch) | |
tree | 126742a2c75edd037b52de9e2525f1cffd630604 /include/group.php | |
parent | 7cc5a9bba9ee892bac41fe3af4ae00da846ca96a (diff) | |
download | volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.tar.gz volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.tar.bz2 volse-hubzilla-ab099e91028122dfb6b10cf9510b1b061f6f547f.zip |
email integration, cont.
Diffstat (limited to 'include/group.php')
-rw-r--r-- | include/group.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/group.php b/include/group.php index 065c2241f..5dca08c76 100644 --- a/include/group.php +++ b/include/group.php @@ -123,7 +123,8 @@ function group_public_members($gid) { if(intval($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' ", + WHERE `gid` = %d AND `group_member`.`uid` = %d + AND `contact`.`network` != 'dfrn' AND `contact`.`network` != 'mail' ", intval($gid), intval(local_user()) ); |