Fixing appending child at DFRN without a parent id.
This commit is contained in:
parent
df5ea1fab0
commit
bf6a765beb
|
@ -119,8 +119,10 @@ class DFRN
|
|||
$item["entry:cid"] = defaults($item, "entry:cid", 0);
|
||||
|
||||
$entry = self::entry($doc, "text", $item, $owner, $item["entry:comment-allow"], $item["entry:cid"]);
|
||||
if (isset($entry)) {
|
||||
$root->appendChild($entry);
|
||||
}
|
||||
}
|
||||
|
||||
return trim($doc->saveXML());
|
||||
}
|
||||
|
@ -323,8 +325,10 @@ class DFRN
|
|||
}
|
||||
|
||||
$entry = self::entry($doc, $type, $item, $owner, true);
|
||||
if (isset($entry)) {
|
||||
$root->appendChild($entry);
|
||||
}
|
||||
}
|
||||
|
||||
$atom = trim($doc->saveXML());
|
||||
|
||||
|
@ -390,8 +394,10 @@ class DFRN
|
|||
|
||||
foreach ($items as $item) {
|
||||
$entry = self::entry($doc, $type, $item, $owner, true, 0);
|
||||
if (isset($entry)) {
|
||||
$root->appendChild($entry);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$root = self::entry($doc, $type, $item, $owner, true, 0, true);
|
||||
}
|
||||
|
@ -916,7 +922,8 @@ class DFRN
|
|||
$mentioned = [];
|
||||
|
||||
if (!$item['parent']) {
|
||||
return;
|
||||
Logger::notice('Item without parent found.', ['type' => $type, 'item' => $item]);
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($item['deleted']) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user