diff options
author | tcit <tcit@tcit.fr> | 2014-04-24 09:39:50 +0200 |
---|---|---|
committer | tcit <tcit@tcit.fr> | 2014-04-24 09:39:50 +0200 |
commit | ef17914960191c6008fc70891544ae2182d70582 (patch) | |
tree | ea6d84f8710eb0a3ea739f75608565eb192a33f4 /inc/3rdparty | |
parent | 8af31ae0f789f890517da0dbb13faa615638449b (diff) | |
download | wallabag-ef17914960191c6008fc70891544ae2182d70582.tar.gz wallabag-ef17914960191c6008fc70891544ae2182d70582.tar.zst wallabag-ef17914960191c6008fc70891544ae2182d70582.zip |
Fix for #664 - Missing source url attribute in RSS feeds
Diffstat (limited to 'inc/3rdparty')
-rw-r--r-- | inc/3rdparty/libraries/feedwriter/FeedItem.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/3rdparty/libraries/feedwriter/FeedItem.php b/inc/3rdparty/libraries/feedwriter/FeedItem.php index 3487423f..54a56f22 100644 --- a/inc/3rdparty/libraries/feedwriter/FeedItem.php +++ b/inc/3rdparty/libraries/feedwriter/FeedItem.php | |||
@@ -174,7 +174,8 @@ | |||
174 | */ | 174 | */ |
175 | public function setSource($link) | 175 | public function setSource($link) |
176 | { | 176 | { |
177 | $this->setElement('source', $link); | 177 | $attributes = array('url'=>$link); |
178 | $this->setElement('source', "wallabag",$attributes); | ||
178 | } | 179 | } |
179 | 180 | ||
180 | /** | 181 | /** |