From 1079c10fa49326e2396685577a4d31faeb174625 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Dec 2012 13:35:45 -0800 Subject: progress on the acl selector - it should mostly work, but the returned data isn't yet parsed correctly in mod_item --- mod/acl.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mod') diff --git a/mod/acl.php b/mod/acl.php index 338996829..76be01ee6 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -114,7 +114,8 @@ function acl_init(&$a){ "type" => "g", "photo" => "images/twopeople.png", "name" => $g['name'], - "id" => $g['hash'], + "id" => $g['id'], + "xid" => $g['hash'], "uids" => explode(",",$g['uids']), "link" => '' ); @@ -122,7 +123,7 @@ function acl_init(&$a){ } if ($type=='' || $type=='c') { - $r = q("SELECT xchan_hash as id, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick + $r = q("SELECT abook_id as id, xchan_hash as hash, xchan_name as name, xchan_photo_s as micro, xchan_url as url, xchan_addr as nick FROM abook left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d AND not ( abook_flags & %d ) $sql_extra2 order by xchan_name asc" , intval(local_user()), @@ -186,6 +187,7 @@ function acl_init(&$a){ "photo" => $g['micro'], "name" => $g['name'], "id" => $g['id'], + "xid" => $g['hash'], "link" => $g['url'], "nick" => $g['nick'], ); -- cgit v1.2.3