aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 10:14:59 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 10:14:59 +0100
commit9e7c840b186fb4ad2cd3768cec49ee348facf3da (patch)
treeae8c4c5b18eda7f964e1dcde4aaab7b06c84badd /inc/poche/Poche.class.php
parentac4d114214d820b20e18518a2dbc809337e39043 (diff)
downloadwallabag-9e7c840b186fb4ad2cd3768cec49ee348facf3da.tar.gz
wallabag-9e7c840b186fb4ad2cd3768cec49ee348facf3da.tar.zst
wallabag-9e7c840b186fb4ad2cd3768cec49ee348facf3da.zip
[fix] RSS feeds were buggy when I update full-text RSS
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r--inc/poche/Poche.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 5862befb..d45d0c40 100644
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -870,10 +870,10 @@ class Poche
870 } 870 }
871 // Check the token 871 // Check the token
872 872
873 $feed = new FeedWriter(ATOM); 873 $feed = new FeedWriter(RSS2);
874 $feed->setTitle('poche - ' . $type . ' feed'); 874 $feed->setTitle('poche - ' . $type . ' feed');
875 $feed->setLink(Tools::getPocheUrl()); 875 $feed->setLink(Tools::getPocheUrl());
876 $feed->setChannelElement('updated', date(DATE_ATOM , time())); 876 $feed->setChannelElement('updated', date(DATE_RSS , time()));
877 $feed->setChannelElement('author', 'poche'); 877 $feed->setChannelElement('author', 'poche');
878 878
879 $entries = $this->store->getEntriesByView($type, $user_id); 879 $entries = $this->store->getEntriesByView($type, $user_id);