diff options
author | friendica <info@friendica.com> | 2014-04-12 00:41:36 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-12 00:41:36 -0700 |
commit | aa5054d5ba9fa1bcae06b39b858a56e53ed08738 (patch) | |
tree | 0317cda4afe4881c62cffdb2ae0872f405eef4f3 /mod/acl.php | |
parent | 2212ddb91317de34b584861f4e2c1dc625924612 (diff) | |
download | volse-hubzilla-aa5054d5ba9fa1bcae06b39b858a56e53ed08738.tar.gz volse-hubzilla-aa5054d5ba9fa1bcae06b39b858a56e53ed08738.tar.bz2 volse-hubzilla-aa5054d5ba9fa1bcae06b39b858a56e53ed08738.zip |
this is looking better, call the forum version of a tag "foobar network", besides altering the icon
Diffstat (limited to 'mod/acl.php')
-rw-r--r-- | mod/acl.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mod/acl.php b/mod/acl.php index 589a10eb5..3b737d36e 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -209,14 +209,15 @@ function acl_init(&$a){ if($g['abook_their_perms'] & PERMS_W_TAGWALL) { $contacts[] = array( "type" => "c", - "photo" => $g['micro'], + "photo" => "images/twopeople.png", "name" => $g['name'] . '+', "id" => $g['id'] . '+', "xid" => $g['hash'], "link" => $g['nick'], "nick" => substr($g['nick'],0,strpos($g['nick'],'@')), "self" => (($g['abook_flags'] & ABOOK_FLAG_SELF) ? 'abook-self' : ''), - "taggable" => 'taggable' + "taggable" => 'taggable', + "label" => t('network') ); } $contacts[] = array( @@ -228,7 +229,8 @@ function acl_init(&$a){ "link" => $g['nick'], "nick" => substr($g['nick'],0,strpos($g['nick'],'@')), "self" => (($g['abook_flags'] & ABOOK_FLAG_SELF) ? 'abook-self' : ''), - "taggable" => '' + "taggable" => '', + "label" => '', ); } } |