aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche')
-rwxr-xr-xinc/poche/Poche.class.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 49651c52..0c4143e1 100755
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -1147,8 +1147,9 @@ class Poche
1147 $feed = new FeedWriter(RSS2); 1147 $feed = new FeedWriter(RSS2);
1148 $feed->setTitle('wallabag — ' . $type . ' feed'); 1148 $feed->setTitle('wallabag — ' . $type . ' feed');
1149 $feed->setLink(Tools::getPocheUrl()); 1149 $feed->setLink(Tools::getPocheUrl());
1150 $feed->setChannelElement('updated', date(DATE_RSS , time())); 1150 $feed->setChannelElement('pubDate', date(DATE_RSS , time()));
1151 $feed->setChannelElement('author', 'wallabag'); 1151 $feed->setChannelElement('generator', 'wallabag');
1152 $feed->setDescription('wallabag ' . $type . ' elements');
1152 1153
1153 if ($type == 'tag') { 1154 if ($type == 'tag') {
1154 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id); 1155 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id);