PatchFeeder: fix newline

This commit is contained in:
Steffen Lange 2021-03-22 12:08:23 +01:00
parent 65bcd51012
commit 5220555bc4

View file

@ -33,7 +33,7 @@ $db->sort();
echo '<link>' . htmlspecialchars($patch->getURL()) . '</link>';
echo '<pubDate>' . date(DATE_RSS, $patch->getTimestamp()) . '</pubDate>';
echo '<guid isPermaLink="false">' . hash('sha256', $patch) . '</guid>';
echo '</item>' . "\r\n";
echo '</item>' . "\n";
}
?>