diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-02 18:24:18 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-02 18:24:18 -0700 |
commit | 7acb0685904bd66cd89ef15e181148d31c6813dc (patch) | |
tree | 8821a1077c9bd507691c51ecf9495a37afe322dc /include/channel.php | |
parent | 80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc (diff) | |
download | volse-hubzilla-7acb0685904bd66cd89ef15e181148d31c6813dc.tar.gz volse-hubzilla-7acb0685904bd66cd89ef15e181148d31c6813dc.tar.bz2 volse-hubzilla-7acb0685904bd66cd89ef15e181148d31c6813dc.zip |
profile_sidebar hook ignored the updated html content
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index 890bb8bd6..6220ff179 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1196,7 +1196,8 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa call_hooks('profile_sidebar', $arr); - return $o; + return $arr['entry']; + } |