Feedparser: Add important check for unknown feed type detection
This commit is contained in:
parent
a25c91a4e0
commit
2c6f3c2eb3
|
@ -93,7 +93,7 @@ class FeedParser {
|
||||||
|
|
||||||
$root = $xpath->query("(//atom03:feed|//atom:feed|//channel|//rdf:rdf|//rdf:RDF)");
|
$root = $xpath->query("(//atom03:feed|//atom:feed|//channel|//rdf:rdf|//rdf:RDF)");
|
||||||
|
|
||||||
if ($root) {
|
if ($root && $root->length > 0) {
|
||||||
$root = $root->item(0);
|
$root = $root->item(0);
|
||||||
|
|
||||||
if ($root) {
|
if ($root) {
|
||||||
|
|
Loading…
Reference in New Issue