From f11015058d6e313d3cabc3d3edc0230a5b6b4c26 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 1 May 2013 21:01:30 +0400 Subject: [PATCH] support dc:creator --- classes/feeditem/atom.php | 7 +++++++ classes/feeditem/rss.php | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/classes/feeditem/atom.php b/classes/feeditem/atom.php index d21933897..1a9db9020 100644 --- a/classes/feeditem/atom.php +++ b/classes/feeditem/atom.php @@ -138,6 +138,13 @@ class FeedItem_Atom { if ($email) return $email->nodeValue; } + + $author = $this->xpath->query("dc:creator", $this->elem)->item(0); + + if ($author) { + return $author->nodeValue; + } + } } ?> diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php index 7a3b0d342..9e54a9c09 100644 --- a/classes/feeditem/rss.php +++ b/classes/feeditem/rss.php @@ -129,8 +129,14 @@ class FeedItem_RSS { $email = $author->getElementsByTagName("email")->item(0); if ($email) return $email->nodeValue; - } + + $author = $this->xpath->query("dc:creator", $this->elem)->item(0); + + if ($author) { + return $author->nodeValue; + } + } } ?>