aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-12 01:31:55 -0700
committerFriendika <info@friendika.com>2011-04-12 01:31:55 -0700
commit61915a524debe3db08a07f0adb86033ee894be28 (patch)
tree6eddd43d6e6994bf2571b868ba0f4db515eb520e /include/group.php
parent6da84027afa18633ac5d5dacce99bb244be2aa7b (diff)
downloadvolse-hubzilla-61915a524debe3db08a07f0adb86033ee894be28.tar.gz
volse-hubzilla-61915a524debe3db08a07f0adb86033ee894be28.tar.bz2
volse-hubzilla-61915a524debe3db08a07f0adb86033ee894be28.zip
first cut at group chooser UI
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 07cd45f19..5001cf53e 100644
--- a/include/group.php
+++ b/include/group.php
@@ -108,7 +108,7 @@ function group_get_members($gid) {
if(intval($gid)) {
$r = q("SELECT `group_member`.`contact-id`, `contact`.* FROM `group_member`
LEFT JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id`
- WHERE `gid` = %d AND `group_member`.`uid` = %d",
+ WHERE `gid` = %d AND `group_member`.`uid` = %d ORDER BY `contact`.`name` ASC ",
intval($gid),
intval(local_user())
);