]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix #3448 - pubDate now conformant to Date and Time specifications defined by RFC822 3471/head
authorChristophe VERGNE <christophe.vergne@gmail.com>
Mon, 11 Dec 2017 12:17:42 +0000 (13:17 +0100)
committerChristophe VERGNE <christophe.vergne@gmail.com>
Mon, 11 Dec 2017 12:17:42 +0000 (13:17 +0100)
src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/entries.xml.twig

index d70aa5dc9c99e58fa043d47183ae5e936e0a164f..25d09ec31a6612afce666243e7129d67cd20e0eb 100644 (file)
@@ -11,7 +11,7 @@
             <link rel="next" href="{{ url }}?page={{ entries.nextPage }}"/>
         {% endif -%}
         <link rel="last" href="{{ url }}?page={{ entries.nbPages }}"/>
-        <pubDate>{{ "now"|date('D, d M Y H:i:s') }}</pubDate>
+        <pubDate>{{ "now"|date(constant('DATE_RSS')) }}</pubDate>
         <generator>wallabag</generator>
         <description>wallabag {{ type }} elements</description>
 
@@ -22,7 +22,7 @@
                 <source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source>
                 <link>{{ entry.url }}</link>
                 <guid>{{ entry.url }}</guid>
-                <pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate>
+                <pubDate>{{ entry.createdAt|date(constant('DATE_RSS')) }}</pubDate>
                 <description>
                     <![CDATA[{%- if entry.readingTime > 0 -%}{{ 'entry.list.reading_time_minutes'|trans({'%readingTime%': entry.readingTime}) }}{%- else -%}{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}{%- endif %}{{ entry.content|raw -}}]]>
                 </description>