We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7292214 commit b6b3480Copy full SHA for b6b3480
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `laravel-feedmaker` will be documented in this file.
4
5
+## 1.0.5 - 2021-10-06
6
+
7
+- fix: encode HTML entities in RSS item guid field
8
9
## 1.0.4 - 2021-10-05
10
11
- fix: encode HTML entities in RSS item links
resources/views/feedrss.blade.php
@@ -15,9 +15,9 @@
15
<link>{{ $item['url'] }}</link>
16
<description><![CDATA[{!! $item['description'] !!}]]></description>
17
@if(! empty($item['guid']))
18
- <guid>{!! $item['guid'] !!}</guid>
+ <guid>{{ $item['guid'] }}</guid>
19
@else
20
- <guid>{!! $item['url'] !!}</guid>
+ <guid>{{ $item['url'] }}</guid>
21
@endif
22
<pubDate>{{ $item['pubDate']->format('Y-m-d H:i:s O') }}</pubDate>
23
</item>
0 commit comments