diff options
author | friendica <info@friendica.com> | 2013-10-01 00:56:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-01 00:56:13 -0700 |
commit | 82b835a18b34d98c77062cbf668548e18d23b624 (patch) | |
tree | effbe0a5c2507760ae065d9c786c91e1c070cac0 /boot.php | |
parent | a6c542289acd349baea37dff0fe7f37427964b15 (diff) | |
parent | d7b81b1afd150ebc0abfcd12f6ab23d65b61a0af (diff) | |
download | volse-hubzilla-82b835a18b34d98c77062cbf668548e18d23b624.tar.gz volse-hubzilla-82b835a18b34d98c77062cbf668548e18d23b624.tar.bz2 volse-hubzilla-82b835a18b34d98c77062cbf668548e18d23b624.zip |
Merge pull request #161 from zzottel/master
Add possibility to use a block in a channel menu (set channel_menublock to ...
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1783,6 +1783,11 @@ function profile_sidebar($profile, $block = 0, $show_connect = true) { if($m) $channel_menu = menu_render($m); } + $menublock = get_pconfig($profile['uid'],'system','channel_menublock'); + if ($menublock) { + require_once('include/comanche.php'); + $channel_menu .= comanche_block($menublock); + } $tpl = get_markup_template('profile_vcard.tpl'); |