aboutsummaryrefslogtreecommitdiffstats
path: root/mod/acl.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-27 05:02:25 -0700
committerFriendika <info@friendika.com>2011-09-27 05:02:25 -0700
commit7e2284043f7367f531e14ce3c26c8c3c71ca2e4b (patch)
treea4cf3078f3b258ddd8a14fc13bb80bc89a1ae740 /mod/acl.php
parent1e288dc8a3169a313876ea671979b40c29722752 (diff)
downloadvolse-hubzilla-7e2284043f7367f531e14ce3c26c8c3c71ca2e4b.tar.gz
volse-hubzilla-7e2284043f7367f531e14ce3c26c8c3c71ca2e4b.tar.bz2
volse-hubzilla-7e2284043f7367f531e14ce3c26c8c3c71ca2e4b.zip
show profile url in ACL hovertips, add fork identifier to json siteinfo
Diffstat (limited to 'mod/acl.php')
-rw-r--r--mod/acl.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/mod/acl.php b/mod/acl.php
index cb5959a95..f2d2456a6 100644
--- a/mod/acl.php
+++ b/mod/acl.php
@@ -53,12 +53,13 @@ function acl_init(&$a){
"photo" => "images/default-group-mm.png",
"name" => $g['name'],
"id" => intval($g['id']),
- "uids" => array_map("intval", explode(",",$g['uids']))
+ "uids" => array_map("intval", explode(",",$g['uids'])),
+ "link" => ''
);
}
- $r = q("SELECT `id`, `name`, `micro`, `network` FROM `contact`
+ $r = q("SELECT `id`, `name`, `micro`, `network`, `url` FROM `contact`
WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `notify` != ''
$sql_extra
ORDER BY `name` ASC ",
@@ -70,7 +71,8 @@ function acl_init(&$a){
"photo" => $g['micro'],
"name" => $g['name'],
"id" => intval($g['id']),
- "network" => $g['network']
+ "network" => $g['network'],
+ "link" => $g['url'],
);
}