diff options
author | friendica <info@friendica.com> | 2012-11-15 21:52:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-15 21:52:05 -0800 |
commit | 5d4c9f5617ec8a99132a59d080f66989eba918f9 (patch) | |
tree | 295d01eeec1d098deb2289c3706ca655f2633908 /mod/acl.php | |
parent | ef192a3c14111bb144f338f43ed7ed9479d74f22 (diff) | |
download | volse-hubzilla-5d4c9f5617ec8a99132a59d080f66989eba918f9.tar.gz volse-hubzilla-5d4c9f5617ec8a99132a59d080f66989eba918f9.tar.bz2 volse-hubzilla-5d4c9f5617ec8a99132a59d080f66989eba918f9.zip |
more progress on notifier cleanup and encoding items for transit.
Diffstat (limited to 'mod/acl.php')
-rw-r--r-- | mod/acl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/acl.php b/mod/acl.php index 630f1e209..0db8af45e 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -91,7 +91,7 @@ function acl_init(&$a){ if ($type=='' || $type=='g'){ - $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') as uids + $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`xchan` SEPARATOR ',') as uids FROM `group`,`group_member` WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d AND `group_member`.`gid`=`group`.`id` |