diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-02-25 13:40:15 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-02-25 13:40:15 +0100 |
commit | be27fb56440c6687add239e10c5e46ee7f3018f1 (patch) | |
tree | e324463b7ac2f57f34fc8a25bc49a9ece337f796 /include/conversation.php | |
parent | ebfa1a12b9cc3d939ed49a7f66e5687267a409d3 (diff) | |
download | volse-hubzilla-be27fb56440c6687add239e10c5e46ee7f3018f1.tar.gz volse-hubzilla-be27fb56440c6687add239e10c5e46ee7f3018f1.tar.bz2 volse-hubzilla-be27fb56440c6687add239e10c5e46ee7f3018f1.zip |
we have got a button for events in the nav. no need for it in the tabs if we are local.
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index e2dfccac9..39119b2bb 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1599,7 +1599,7 @@ function profile_tabs($a, $is_owner = false, $nickname = null){ $uid = (($a->profile['profile_uid']) ? $a->profile['profile_uid'] : local_channel()); if($uid == local_channel()) { - $cal_link = '/events'; + $cal_link = ''; } else { $cal_link = '/cal/' . $nickname; @@ -1653,7 +1653,7 @@ function profile_tabs($a, $is_owner = false, $nickname = null){ ); } - if($p['view_stream']) { + if($p['view_stream'] && $cal_link) { $tabs[] = array( 'label' => t('Events'), 'url' => $a->get_baseurl() . $cal_link, |