From: Michael Date: Sun, 7 May 2023 06:13:28 +0000 (+0000) Subject: Fix: Feeds had been imported with the wrong body X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=91a7217fb8af2469f53b4b0e84849d9abf7029ff;p=friendica.git Fix: Feeds had been imported with the wrong body --- diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index 8c6b4c28d1..6d6d3f6762 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -309,6 +309,7 @@ class Feed $entry = $entries->item($i); $item = array_merge($header, $author); + $body = ''; $alternate = XML::getFirstAttributes($xpath, $atomns . ":link[@rel='alternate']", $entry); if (!is_object($alternate)) {