aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index c4ca03165..9726cc92b 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -169,6 +169,9 @@ function getFeed ($outline, $cat_id) {
$feed = new Feed ($url);
$feed->_category ($cat_id);
$feed->_name ($title);
+ if (isset($outline['htmlUrl'])) {
+ $feed->_website((string)$outline['htmlUrl']);
+ }
return $feed;
}