aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-03-14 09:35:48 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-03-14 09:35:48 +0100
commited02e38e1d52705d74ca43325820e21eabad63b4 (patch)
tree416c274d621c7ba287b5a9567250b459255e337c /inc/poche/Poche.class.php
parent8d7cd2ccd59e152e4023ed9f54b9f693597a40d3 (diff)
downloadwallabag-ed02e38e1d52705d74ca43325820e21eabad63b4.tar.gz
wallabag-ed02e38e1d52705d74ca43325820e21eabad63b4.tar.zst
wallabag-ed02e38e1d52705d74ca43325820e21eabad63b4.zip
[fix] in RSS, link to original article
Diffstat (limited to 'inc/poche/Poche.class.php')
-rwxr-xr-xinc/poche/Poche.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 5b1a0672..7bf33308 100755
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -1164,7 +1164,7 @@ class Poche
1164 foreach ($entries as $entry) { 1164 foreach ($entries as $entry) {
1165 $newItem = $feed->createNewItem(); 1165 $newItem = $feed->createNewItem();
1166 $newItem->setTitle($entry['title']); 1166 $newItem->setTitle($entry['title']);
1167 $newItem->setLink(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']); 1167 $newItem->setLink($entry['url']);
1168 $newItem->setDate(time()); 1168 $newItem->setDate(time());
1169 $newItem->setDescription($entry['content']); 1169 $newItem->setDescription($entry['content']);
1170 $feed->addItem($newItem); 1170 $feed->addItem($newItem);