forked from wallabag/wallabag
[fix] RSS feeds were buggy when I update full-text RSS
This commit is contained in:
@ -870,10 +870,10 @@ class Poche
|
||||
}
|
||||
// Check the token
|
||||
|
||||
$feed = new FeedWriter(ATOM);
|
||||
$feed = new FeedWriter(RSS2);
|
||||
$feed->setTitle('poche - ' . $type . ' feed');
|
||||
$feed->setLink(Tools::getPocheUrl());
|
||||
$feed->setChannelElement('updated', date(DATE_ATOM , time()));
|
||||
$feed->setChannelElement('updated', date(DATE_RSS , time()));
|
||||
$feed->setChannelElement('author', 'poche');
|
||||
|
||||
$entries = $this->store->getEntriesByView($type, $user_id);
|
||||
|
||||
Reference in New Issue
Block a user