summaryrefslogtreecommitdiff
path: root/classes/feedparser.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-01 19:40:43 +0400
committerAndrew Dolgov <[email protected]>2013-05-01 19:40:43 +0400
commit4c00e15b5d05b0d137af9a33bf79172bfeb0df24 (patch)
treee5a6f98d49d5504b36e574431891cd786ec46be1 /classes/feedparser.php
parentfd0daa9b55b98b18b62f1eb710d5df197254ed04 (diff)
pass xpath object to feeditem, support media-rss objects
Diffstat (limited to 'classes/feedparser.php')
-rw-r--r--classes/feedparser.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/classes/feedparser.php b/classes/feedparser.php
index f127ba73d..eabbb5b28 100644
--- a/classes/feedparser.php
+++ b/classes/feedparser.php
@@ -27,6 +27,7 @@ class FeedParser {
$root = $this->doc->firstChild;
$xpath = new DOMXPath($this->doc);
$xpath->registerNamespace('atom', 'http://www.w3.org/2005/Atom');
+ $xpath->registerNamespace('media', 'http://search.yahoo.com/mrss/');
$this->xpath = $xpath;
$root = $xpath->query("(//atom:feed|//channel)")->item(0);
@@ -62,7 +63,7 @@ class FeedParser {
$articles = $xpath->query("//atom:entry");
foreach ($articles as $article) {
- array_push($this->items, new FeedItem_Atom($article));
+ array_push($this->items, new FeedItem_Atom($article, $this->doc, $this->xpath));
}
break;
@@ -83,7 +84,7 @@ class FeedParser {
$articles = $xpath->query("//channel/item");
foreach ($articles as $article) {
- array_push($this->items, new FeedItem_RSS($article));
+ array_push($this->items, new FeedItem_RSS($article, $this->doc, $this->xpath));
}
break;