profile_tabs hook

This commit is contained in:
friendica 2012-03-27 20:15:15 -07:00
parent 7ee07daf04
commit 0aa99acd35
2 changed files with 7 additions and 2 deletions

View File

@ -1381,6 +1381,11 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
);
}
$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
call_hooks('profile_tabs', $arr);
$tpl = get_markup_template('common_tabs.tpl');
return replace_macros($tpl,array('$tabs'=>$tabs));
return replace_macros($tpl,array('$tabs' => $arr['tabs']));
}}

View File

@ -46,7 +46,7 @@ function networks_widget($baseurl,$selected = '') {
return '';
$r = q("select distinct(network) from contact where uid = %d",
$r = q("select distinct(network) from contact where uid = %d and self = 0",
intval(local_user())
);