aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-13 15:26:47 -0700
committerFriendika <info@friendika.com>2011-09-13 15:26:47 -0700
commit1248a561e13ebd0a612b7e6b0630c1aa89f0556e (patch)
tree1739b16c1384edf37f0ff0305e8b0d25d0ed6a33 /include/group.php
parent21d35e52dd4a83635127e1a68f6a478cf3289b1b (diff)
downloadvolse-hubzilla-1248a561e13ebd0a612b7e6b0630c1aa89f0556e.tar.gz
volse-hubzilla-1248a561e13ebd0a612b7e6b0630c1aa89f0556e.tar.bz2
volse-hubzilla-1248a561e13ebd0a612b7e6b0630c1aa89f0556e.zip
group_public_members sql query typo
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 309949680..d92e24e20 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' AND `contact`.`notify` != '' )",
+ AND `contact`.`network` = '%s' AND `contact`.`notify` != '' ",
intval($gid),
intval(local_user()),
dbesc(NETWORK_OSTATUS)