diff options
author | friendica <info@friendica.com> | 2013-12-16 13:34:34 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-16 13:34:34 -0800 |
commit | 50731fa6a6edbd5d4223de239ae791cc03efe9be (patch) | |
tree | d5fe500771e6623a20cab3051733cedfa5a2ca62 | |
parent | a7a775a718ef92c9bd623849baab1e386071d70b (diff) | |
download | volse-hubzilla-50731fa6a6edbd5d4223de239ae791cc03efe9be.tar.gz volse-hubzilla-50731fa6a6edbd5d4223de239ae791cc03efe9be.tar.bz2 volse-hubzilla-50731fa6a6edbd5d4223de239ae791cc03efe9be.zip |
bring back the collection edit sidebar widget on the connection edit page until I sort out Comanche on that page.
-rw-r--r-- | mod/connections.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/connections.php b/mod/connections.php index d1bb33748..cb859e4a6 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -39,10 +39,10 @@ function connections_aside(&$a) { if(x($a->data,'abook')) { $a->set_widget('vcard',vcard_from_xchan($a->data['abook'],$a->get_observer())); + $a->set_widget('collections', group_side('connections','group',false,0,$a->data['abook']['abook_xchan'])); } else { $a->set_widget('follow', widget_follow(array())); - $a->set_widget('collections', group_side('connections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_xchan'] : ''))); } |