diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-13 10:59:37 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-13 10:59:37 +0200 |
commit | a1d5ce3716d09b7ccd81e252309ca9fd5e841b26 (patch) | |
tree | 9fc66fc5832248fac10e1b629ae158043c98e361 /include/nav.php | |
parent | 78dc679a72a5a2d94a59642dd6b0087b0fc14837 (diff) | |
download | volse-hubzilla-a1d5ce3716d09b7ccd81e252309ca9fd5e841b26.tar.gz volse-hubzilla-a1d5ce3716d09b7ccd81e252309ca9fd5e841b26.tar.bz2 volse-hubzilla-a1d5ce3716d09b7ccd81e252309ca9fd5e841b26.zip |
remove profile_tabs() which has been deprecated and replaced by channel_apps()
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 7520fd782..15060a033 100644 --- a/include/nav.php +++ b/include/nav.php @@ -490,7 +490,7 @@ function channel_apps($is_owner = false, $nickname = null) { } $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs); - call_hooks('profile_tabs', $arr); + call_hooks('channel_apps', $arr); return replace_macros(get_markup_template('profile_tabs.tpl'), |