mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:35:55 +00:00
support dc:creator
This commit is contained in:
@@ -138,6 +138,13 @@ class FeedItem_Atom {
|
|||||||
if ($email) return $email->nodeValue;
|
if ($email) return $email->nodeValue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$author = $this->xpath->query("dc:creator", $this->elem)->item(0);
|
||||||
|
|
||||||
|
if ($author) {
|
||||||
|
return $author->nodeValue;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -129,8 +129,14 @@ class FeedItem_RSS {
|
|||||||
$email = $author->getElementsByTagName("email")->item(0);
|
$email = $author->getElementsByTagName("email")->item(0);
|
||||||
|
|
||||||
if ($email) return $email->nodeValue;
|
if ($email) return $email->nodeValue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$author = $this->xpath->query("dc:creator", $this->elem)->item(0);
|
||||||
|
|
||||||
|
if ($author) {
|
||||||
|
return $author->nodeValue;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user