From 06959d745ea3a3a8dc7daa2fd2e83f9785cbcceb Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 25 Jun 2016 16:20:44 +0200 Subject: [PATCH] viewcontacts - make the tabbar available even if hide-friends is active --- mod/viewcontacts.php | 10 +++++----- view/theme/frio/css/style.css | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 2e36a3bd7a..2e71bc7abe 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -36,16 +36,16 @@ function viewcontacts_content(&$a) { return; } - if(((! count($a->profile)) || ($a->profile['hide-friends']))) { - notice( t('Permission denied.') . EOL); - return; - } - $o = ""; // tabs $o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']); + if(((! count($a->profile)) || ($a->profile['hide-friends']))) { + notice( t('Permission denied.') . EOL); + return; + } + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 AND `network` IN ('%s', '%s', '%s')", diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index bfce21a654..8ddfcbf436 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1770,7 +1770,7 @@ ul.dropdown-menu li:hover { .allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper, .directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper, .message-content-wrapper, .apps-content-wrapper, .notifications-content-wrapper, -.admin-content-wrapper, .group-content-wrapper { +.admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper { min-height: calc(100vh - 150px); padding: 15px; padding-bottom: 20px;