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

#654728 Aron Novak: Fix parsing + data handling error with RDF 1.0 feeds.

parent b6b5fb4b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
Feeds 6.x 1.0 XXXXXXX, 20XX-XX-XX
---------------------------------
- #654728 Aron Novak: Fix parsing + data handling error with RDF 1.0 feeds.
- #641522 mongolito404, alex_b: Consolidate import stage results.
- #662104 Aron Novak: Specify PHP requirement in .info file.
- #657374 dtomasch: Common Parser does not get RSS Authors correctly.
......
......@@ -228,7 +228,7 @@ function _parser_common_syndication_RDF10_parse($feed_XML) {
// Process the <rss:channel> resource containing feed metadata:
foreach ($feed_XML->children($canonical_namespaces['rss'])->channel as $rss_channel) {
$parsed_source = (object)array(
$parsed_source = array(
'title' => _parser_common_syndication_title((string)$rss_channel->title),
'description' => (string)$rss_channel->description,
'options' => (object)array('link' => (string)$rss_channel->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