diff options
Diffstat (limited to 'lib/lib_rss.php')
| -rw-r--r-- | lib/lib_rss.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index a7a5244f8..0711f9d8a 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -133,9 +133,15 @@ function getFeedsOutline ($outline, $cat_id) { function getFeed ($outline, $cat_id) { $url = (string) $outline['xmlUrl']; + $title = ''; + if (isset ($outline['text'])) { + $title = (string) $outline['text']; + } elseif (isset ($outline['title'])) { + $title = (string) $outline['title']; + } $feed = new Feed ($url); $feed->_category ($cat_id); - + $feed->_name ($title); return $feed; } |
