]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Fix RSS permalink included in Markdown bloc 1364/head
authorArthurHoaro <arthur@hoa.ro>
Thu, 12 Sep 2019 17:32:30 +0000 (19:32 +0200)
committerArthurHoaro <arthur@hoa.ro>
Thu, 12 Sep 2019 17:38:37 +0000 (19:38 +0200)
Adds another line break before inserting RSS permalink to avoid including it in markdown blocs, such as blockquote.

application/feed/FeedBuilder.php

index 7c859474de414773052c0c5e79dd1583dfcd046f..957c827339515af83acddcb1245d258b59dad9b0 100644 (file)
@@ -157,7 +157,7 @@ class FeedBuilder
             $permalink = '<a href="' . $link['guid'] . '" title="' . t('Permalink') . '">' . t('Permalink') . '</a>';
         }
         $link['description'] = format_description($link['description'], $pageaddr);
-        $link['description'] .= PHP_EOL . '<br>&#8212; ' . $permalink;
+        $link['description'] .= PHP_EOL . PHP_EOL . '<br>&#8212; ' . $permalink;
 
         $pubDate = $link['created'];
         $link['pub_iso_date'] = $this->getIsoDate($pubDate);