Merge pull request #4932 from MrPetovan/bug/4928-fix-php-72-warning-profile

Fix PHP 7.2 warning in Model\Profile
pull/4936/head
Tobias Diekershoff 2018-04-26 16:36:19 +02:00 zatwierdzone przez GitHub
commit eae86951f5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -950,7 +950,7 @@ class Profile
];
}
if ((!$is_owner) && ((count($a->profile)) || (!$a->profile['hide-friends']))) {
if (!$is_owner && empty($a->profile['hide-friends'])) {
$tabs[] = [
'label' => L10n::t('Contacts'),
'url' => System::baseUrl() . '/viewcontacts/' . $nickname,