From 494dd55b17689431db34149c40a303a3fa78af43 Mon Sep 17 00:00:00 2001 From: StepanKuzmin <StepanKuzmin@858626.no-reply.drupal.org> Date: Thu, 22 Dec 2011 14:29:09 -0500 Subject: [PATCH] Issue #1225672 by StepanKuzmin, tekante | guillaumev: Fixed Bug when importing a single year. --- plugins/FeedsParser.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc index aa1dfff9..0c5477e1 100644 --- a/plugins/FeedsParser.inc +++ b/plugins/FeedsParser.inc @@ -534,7 +534,10 @@ class FeedsDateTime extends DateTime { public function __construct($time = '', $tz = NULL) { // Assume UNIX timestamp if numeric. if (is_numeric($time)) { - $time = "@" . $time; + // Make sure it's not a simple year + if ((is_string($time) && strlen($time) > 4) || is_int($time)) { + $time = "@" . $time; + } } // PHP < 5.3 doesn't like the GMT- notation for parsing timezones. -- GitLab