From deeeee76d2a85314ddab909f160574d0c7a5964d Mon Sep 17 00:00:00 2001 From: syrnon Date: Wed, 3 Jul 2013 22:35:38 +0300 Subject: Update feedparser.php --- classes/feedparser.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'classes/feedparser.php') diff --git a/classes/feedparser.php b/classes/feedparser.php index eb8606de9..1474c66bf 100644 --- a/classes/feedparser.php +++ b/classes/feedparser.php @@ -103,10 +103,19 @@ class FeedParser { if (!$articles || $articles->length == 0) $articles = $xpath->query("//atom03:entry"); + $feed = $this->xpath->query("//atom:feed")->item(0); + $atts = $feed->attributes; + foreach($atts as $attrib) + { + if($attrib->name == "base"){ + $base = $attrib->nodeValue; + } + } foreach ($articles as $article) { - array_push($this->items, new FeedItem_Atom($article, $this->doc, $this->xpath)); + array_push($this->items, new FeedItem_Atom($article, $this->doc, $this->xpath, $base)); } + break; case $this::FEED_RSS: $title = $xpath->query("//channel/title")->item(0); -- cgit v1.2.3