summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php')
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php
index dd2aa7a8c..315c7db26 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss10.php
@@ -149,7 +149,7 @@ class Rss10 extends Parser
$date = XmlParser::getXPathResult($xml, 'rss:channel/dc:date', $this->namespaces)
?: XmlParser::getXPathResult($xml, 'channel/dc:date', $this->namespaces);
- $feed->date = $this->date->getDateTime((string) current($date));
+ $feed->date = $this->getDateParser()->getDateTime((string) current($date));
}
/**
@@ -163,7 +163,7 @@ class Rss10 extends Parser
{
$date = XmlParser::getXPathResult($entry, 'dc:date', $this->namespaces);
- $item->date = empty($date) ? $feed->getDate() : $this->date->getDateTime((string) current($date));
+ $item->date = empty($date) ? $feed->getDate() : $this->getDateParser()->getDateTime((string) current($date));
}
/**