diff options
| author | 2019-09-29 11:14:21 +0200 | |
|---|---|---|
| committer | 2019-09-29 11:14:21 +0200 | |
| commit | ec4307c1a64a0f60648fdd7d0a2eb819bbf12965 (patch) | |
| tree | db80b5154adb00a58acea7f667cb429c870cfb95 /app/views | |
| parent | 823f5815237af3b17ce24c6f224c8624dab6cc92 (diff) | |
Use dc:creator instead of author for RSS 2.0 outputs (#2542)
https://github.com/FreshRSS/FreshRSS/issues/2538#issuecomment-536227043
Diffstat (limited to 'app/views')
| -rwxr-xr-x | app/views/index/rss.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/index/rss.phtml b/app/views/index/rss.phtml index 104e03d15..dcfaa0a57 100755 --- a/app/views/index/rss.phtml +++ b/app/views/index/rss.phtml @@ -17,7 +17,7 @@ foreach ($this->entries as $item) { $authors = $item->authors(); if (is_array($authors)) { foreach ($authors as $author) { - echo "\t\t\t" , '<author>', $author, '</author>', "\n"; + echo "\t\t\t" , '<dc:creator>', $author, '</dc:creator>', "\n"; } } $categories = $item->tags(); |
