Merge pull request #12147 from annando/warning

Fix warning:  Undefined array key "public"
develop
Philipp 2022-11-09 09:25:01 +01:00 zatwierdzone przez GitHub
commit 55365aa4da
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -39,12 +39,13 @@ class Relationship extends BaseFactory
{
$cdata = Contact::getPublicAndUserContactID($contactId, $uid);
if (!empty($cdata)) {
$cid = $cdata['user'];
$cid = $cdata['user'];
$pcid = $cdata['public'];
} else {
$cid = $contactId;
$pcid = $cid = $contactId;
}
return new RelationshipEntity($cdata['public'], Contact::getById($cid),
return new RelationshipEntity($pcid, Contact::getById($cid),
Contact\User::isBlocked($cid, $uid), Contact\User::isIgnored($cid, $uid));
}
}

Wyświetl plik

@ -67,7 +67,7 @@ class CheckRelMeProfileLink
Logger::notice('Empty body of the fetched homepage link). Cannot verify the relation to profile of UID %s.', ['uid' => $uid, 'owner homepage' => $owner['homepage']]);
} else {
$doc = new DOMDocument();
$doc->loadHTML($content);
@$doc->loadHTML($content);
if (!$doc) {
Logger::notice('Could not parse the content');
} else {