mirror of
https://github.com/friendica/friendica
synced 2025-04-29 10:24:23 +02:00
And some more notices removed ... (#5533)
* Fix for vanishing notes * The field needs to be part of the selected fields ... * And some more notes ...
This commit is contained in:
parent
2c0ad47dfc
commit
b552b711ee
4 changed files with 25 additions and 7 deletions
|
@ -2422,13 +2422,17 @@ class DFRN
|
|||
|
||||
$owner_unknown = (isset($owner["contact-unknown"]) && $owner["contact-unknown"]);
|
||||
|
||||
$item["owner-name"] = $owner["name"];
|
||||
$item["owner-link"] = $owner["link"];
|
||||
$item["owner-avatar"] = $owner["avatar"];
|
||||
$item["owner-id"] = Contact::getIdForURL($owner["link"], 0);
|
||||
|
||||
// fetch the author
|
||||
$author = self::fetchauthor($xpath, $entry, $importer, "atom:author", true);
|
||||
|
||||
$item["author-name"] = $author["name"];
|
||||
$item["author-link"] = $author["link"];
|
||||
$item["author-avatar"] = $author["avatar"];
|
||||
$item["author-id"] = Contact::getIdForURL($author["link"], 0);
|
||||
|
||||
$item["title"] = XML::getFirstNodeValue($xpath, "atom:title/text()", $entry);
|
||||
|
|
|
@ -350,6 +350,10 @@ class OStatus
|
|||
$header["origin"] = 0;
|
||||
$header["gravity"] = GRAVITY_COMMENT;
|
||||
|
||||
if (!is_object($doc->firstChild)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$first_child = $doc->firstChild->tagName;
|
||||
|
||||
if ($first_child == "feed") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue