Skip to content
Snippets Groups Projects
Commit 346b7ac8 authored by Alex Barth's avatar Alex Barth
Browse files

#657374 dtomasch: Common Parser does not get RSS Authors correctly.

parent 6434026b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
Feeds 6.x 1.0 XXXXXXX, 20XX-XX-XX
---------------------------------
- #657374 dtomasch: Common Parser does not get RSS Authors correctly.
Feeds 6.x 1.0 Alpha 9, 2009-12-14
---------------------------------
......
......@@ -374,8 +374,8 @@ function _parser_common_syndication_RSS20_parse($feed_XML) {
$body = "{$news['title']}";
}
if (!empty($feed_XML->channel->title)) {
$original_author = "{$feed_XML->channel->title}";
if (!empty($news['author'])) {
$original_author = "{$news['author']}";
}
if (!empty($news['link'])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment