summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/feedparser.php11
1 files changed, 10 insertions, 1 deletions
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);