not quite right but I need to check it in so I can switch branches

This commit is contained in:
friendica 2014-04-11 20:35:25 -07:00
parent 2b3697c27a
commit 47096df97e

View File

@ -210,11 +210,11 @@ function acl_init(&$a){
$contacts[] = array( $contacts[] = array(
"type" => "c", "type" => "c",
"photo" => $g['micro'], "photo" => $g['micro'],
"name" => $g['name'] . '+', "name" => $g['name'] . ' ' . t('plus connections'),
"id" => $g['id'] . '+', "id" => $g['id'] . '+',
"xid" => $g['hash'], "xid" => $g['hash'],
"link" => $g['nick'], "link" => $g['nick'],
"nick" => substr($g['nick'],0,strpos($g['nick'],'@')) . ' ' . t('plus connections'), "nick" => substr($g['nick'],0,strpos($g['nick'],'@')) . '+',
"self" => (($g['abook_flags'] & ABOOK_FLAG_SELF) ? 'abook-self' : ''), "self" => (($g['abook_flags'] & ABOOK_FLAG_SELF) ? 'abook-self' : ''),
"taggable" => 'taggable' "taggable" => 'taggable'
); );