Skip to content
Snippets Groups Projects
Commit 5a3bc9e1 authored by Alex Barth's avatar Alex Barth
Browse files

#901798: Fix time off in SitemapParser.

parent 909f7b9e
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
-------------------------------- --------------------------------
- #901798 alex_b: Fix time off in SitemapParser.
- #885724 eliotttf: Avoid array_flip() on non scalars. - #885724 eliotttf: Avoid array_flip() on non scalars.
- #885052 Hanno: Fix small typo in access rights. - #885052 Hanno: Fix small typo in access rights.
- #863494 ekes, alex_b: Delete temporary enclosures file. - #863494 ekes, alex_b: Delete temporary enclosures file.
......
...@@ -9,6 +9,9 @@ class FeedsSitemapParser extends FeedsParser { ...@@ -9,6 +9,9 @@ class FeedsSitemapParser extends FeedsParser {
* Implementation of FeedsParser::parse(). * Implementation of FeedsParser::parse().
*/ */
public function parse(FeedsImportBatch $batch, FeedsSource $source) { public function parse(FeedsImportBatch $batch, FeedsSource $source) {
// Set time zone to GMT for parsing dates with strtotime().
$tz = date_default_timezone_get();
date_default_timezone_set('GMT');
// Yes, using a DOM parser is a bit inefficient, but will do for now // Yes, using a DOM parser is a bit inefficient, but will do for now
$xml = new SimpleXMLElement($batch->getRaw()); $xml = new SimpleXMLElement($batch->getRaw());
foreach ($xml->url as $url) { foreach ($xml->url as $url) {
...@@ -24,6 +27,7 @@ class FeedsSitemapParser extends FeedsParser { ...@@ -24,6 +27,7 @@ class FeedsSitemapParser extends FeedsParser {
} }
$batch->addItem($item); $batch->addItem($item);
} }
date_default_timezone_set($tz);
} }
/** /**
......
...@@ -982,6 +982,7 @@ class FeedsSitemapParserTestCase extends FeedsWebTestCase { ...@@ -982,6 +982,7 @@ class FeedsSitemapParserTestCase extends FeedsWebTestCase {
$result = db_query('SELECT * FROM {feeds_node_item} WHERE feed_nid = %d ORDER BY nid', $nid); $result = db_query('SELECT * FROM {feeds_node_item} WHERE feed_nid = %d ORDER BY nid', $nid);
// Check first item. // Check first item.
date_default_timezone_set('GMT');
$item = db_fetch_object($result); $item = db_fetch_object($result);
$node = node_load($item->nid); $node = node_load($item->nid);
$this->assertEqual($node->title, 'monthly', 'Feed item 1 changefreq is correct.'); $this->assertEqual($node->title, 'monthly', 'Feed item 1 changefreq is correct.');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment