? 831470-2_date_create.patch ? libraries/PuSHSubscriber ? libraries/simplepie.inc ? tests/feeds/Google Election Engine Development Seed.html ? tests/feeds/Google Election Engine Development Seed_files Index: plugins/FeedsParser.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/feeds/plugins/FeedsParser.inc,v retrieving revision 1.13 diff -u -p -r1.13 FeedsParser.inc --- plugins/FeedsParser.inc 16 May 2010 21:08:18 -0000 1.13 +++ plugins/FeedsParser.inc 19 Jun 2010 14:11:10 -0000 @@ -385,7 +385,7 @@ class FeedsDateTime extends DateTime { // PHP < 5.3 doesn't like the GMT- notation for parsing timezones. $time = str_replace("GMT-", "-", $time); $time = str_replace("GMT+", "+", $time); - parent::__construct($time, $tz ? $tz : new DateTimeZone("UTC")); + parent::__construct(strtotime($time), $tz ? $tz : new DateTimeZone("UTC")); $this->setGranularityFromTime($time, $tz); if (!preg_match('/[a-zA-Z]/', $this->getTimezone()->getName())) { // This tz was given as just an offset, which causes problems