summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/feeditem/atom.php6
-rw-r--r--classes/feeditem/rss.php6
2 files changed, 12 insertions, 0 deletions
diff --git a/classes/feeditem/atom.php b/classes/feeditem/atom.php
index 489c5b148..c9f5b5c62 100644
--- a/classes/feeditem/atom.php
+++ b/classes/feeditem/atom.php
@@ -16,6 +16,12 @@ class FeedItem_Atom extends FeedItem_Common {
if ($updated) {
return strtotime($updated->nodeValue);
}
+
+ $date = $this->xpath->query("dc:date", $this->elem)->item(0);
+
+ if ($date) {
+ return strtotime($date->nodeValue);
+ }
}
function get_link() {
diff --git a/classes/feeditem/rss.php b/classes/feeditem/rss.php
index e09a1fbba..e5960243c 100644
--- a/classes/feeditem/rss.php
+++ b/classes/feeditem/rss.php
@@ -16,6 +16,12 @@ class FeedItem_RSS extends FeedItem_Common {
if ($pubDate) {
return strtotime($pubDate->nodeValue);
}
+
+ $date = $this->xpath->query("dc:date", $this->elem)->item(0);
+
+ if ($date) {
+ return strtotime($date->nodeValue);
+ }
}
function get_link() {