diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-06 13:42:22 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-06 13:42:22 -0400 |
commit | 6950100ff4c9104fd6f980641e7118b909fd44db (patch) | |
tree | 2af109ca04cd3cd1f8a12a35bc5dbca4cffcb1ce /include/identity.php | |
parent | 3011d3768cb524ccf795ed64924649a2e30a036b (diff) | |
parent | b08fc746d81e9e486988439ae9a51918e9f9ee37 (diff) | |
download | volse-hubzilla-6950100ff4c9104fd6f980641e7118b909fd44db.tar.gz volse-hubzilla-6950100ff4c9104fd6f980641e7118b909fd44db.tar.bz2 volse-hubzilla-6950100ff4c9104fd6f980641e7118b909fd44db.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into plugin-repo
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/identity.php b/include/identity.php index 53bed7c0f..807f850db 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1070,8 +1070,8 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa } $menublock = get_pconfig($profile['uid'],'system','channel_menublock'); if ($menublock && (! $block)) { - require_once('include/comanche.php'); - $channel_menu .= comanche_block($menublock); + $comanche = new Zotlabs\Render\Comanche(); + $channel_menu .= $comanche->block($menublock); } if($zcard) |