Apply suggestions from code review

Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022.09-rc
Michael Vogel 2020-09-29 05:56:57 +02:00 zatwierdzone przez GitHub
rodzic fb50a43ac0
commit 777ece84cf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1795,9 +1795,9 @@ class DFRN
{
Logger::notice('Processing suggestions');
$url = $xpath->query('dfrn:url/text()', $suggestion)->item(0)->nodeValue;
$url = $xpath->evaluate('string(dfrn:url[1]/text())', $suggestion);
$cid = Contact::getIdForURL($url);
$note = $xpath->query('dfrn:note/text()', $suggestion)->item(0)->nodeValue;
$note = $xpath->evaluate('string(dfrn:note[1]/text())', $suggestion);
return FContact::addSuggestion($importer['importer_uid'], $cid, $importer['id'], $note);
}