1
0

Really fix concatenation of entry body for full feed

Commit 70c4ce8e40 will need double quotes around \n ...

See #335 for context.
This commit is contained in:
Thomas Hochstein
2015-03-29 21:50:52 +02:00
parent 70c4ce8e40
commit 63786a41c2

View File

@ -68,7 +68,7 @@ function serendipity_printEntries_rss(&$entries, $version, $comments = false, $f
// Embed a link to extended entry, if existing
if ($options['fullFeed']) {
$entry['body'] .= '\n' . $entry['extended'];
$entry['body'] .= "\n" . $entry['extended'];
$ext = '';
} elseif ($entry['exflag']) {
$ext = '<a class="block_level" href="' . $entry['feed_entryLink'] . '#extended">' . sprintf(VIEW_EXTENDED_ENTRY, serendipity_specialchars($entry['title'])) . '</a>';