we have got a button for events in the nav. no need for it in the tabs if we are local.

This commit is contained in:
Mario Vavti
2016-02-25 13:40:15 +01:00
parent ebfa1a12b9
commit be27fb5644
3 changed files with 6 additions and 2 deletions

View File

@@ -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,