Merge pull request #1929 from wallabag/change-guid-rss

Change guid and link in RSS feeds to give original entry URL
This commit is contained in:
Nicolas Lœuillet 2016-04-15 17:51:56 +02:00
commit 5180302650
2 changed files with 4 additions and 4 deletions

View file

@ -12,8 +12,8 @@
<item> <item>
<title><![CDATA[{{ entry.title }}]]></title> <title><![CDATA[{{ entry.title }}]]></title>
<source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source> <source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source>
<link>{{ url('view', { 'id': entry.id }) }}</link> <link>{{ entry.url }}</link>
<guid>{{ url('view', { 'id': entry.id }) }}</guid> <guid>{{ entry.url }}</guid>
<pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate> <pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate>
<description> <description>
<![CDATA[ <![CDATA[

View file

@ -12,8 +12,8 @@
<item> <item>
<title><![CDATA[{{ entry.title }}]]></title> <title><![CDATA[{{ entry.title }}]]></title>
<source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source> <source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source>
<link>{{ url('view', { 'id': entry.id }) }}</link> <link>{{ entry.url }}</link>
<guid>{{ url('view', { 'id': entry.id }) }}</guid> <guid>{{ entry.url }}</guid>
<pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate> <pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate>
<description> <description>
<![CDATA[ <![CDATA[