From c862b5f6cb0ceb443e96afeb811ff6e123de910b Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Tue, 9 Feb 2010 17:20:18 +0000 Subject: [PATCH] Fix notices in tests. --- plugins/FeedsParser.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc index 07a6408e..5a757e8b 100644 --- a/plugins/FeedsParser.inc +++ b/plugins/FeedsParser.inc @@ -447,9 +447,10 @@ class FeedsDateTime extends DateTime { protected function setGranularityFromTime($time, $tz) { $this->granularity = array(); $temp = date_parse($time); - // This PHP method currently doesn't have resolution down to seconds, so if there is some time, all will be set. + // This PHP method currently doesn't have resolution down to seconds, so if + // there is some time, all will be set. foreach (self::$allgranularity AS $g) { - if (is_numeric($temp[$g]) || ($g == 'zone' && $temp['zone_type'] > 0)) { + if ((isset($temp[$g]) && is_numeric($temp[$g])) || ($g == 'zone' && (isset($temp['zone_type']) && $temp['zone_type'] > 0))) { $this->granularity[] = $g; } } -- GitLab