]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
[change] wallabag in feeds title
authorNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Thu, 13 Feb 2014 07:57:44 +0000 (08:57 +0100)
committerNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Thu, 13 Feb 2014 07:57:44 +0000 (08:57 +0100)
inc/poche/Poche.class.php

index a786c8df5a97a37a079636cd9289da9afa7ddd68..dd5fb0b97fa343a0e20ee0ef00cb9a45180dbe21 100644 (file)
@@ -1031,10 +1031,10 @@ class Poche
         // Check the token
 
         $feed = new FeedWriter(RSS2);
-        $feed->setTitle('poche - ' . $type . ' feed');
+        $feed->setTitle('wallabag — ' . $type . ' feed');
         $feed->setLink(Tools::getPocheUrl());
         $feed->setChannelElement('updated', date(DATE_RSS , time()));
-        $feed->setChannelElement('author', 'poche');
+        $feed->setChannelElement('author', 'wallabag');
 
         if ($type == 'tag') {
             $entries = $this->store->retrieveEntriesByTag($tag_id);