From c76bc9ed6a80ac7cc644b610c009752b2a9ca672 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Thu, 28 Jan 2010 20:08:00 +0000 Subject: [PATCH] Fix notices. --- plugins/FeedsParser.inc | 4 ++-- plugins/FeedsSimplePieParser.inc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc index 3f5cae00..9f872a1f 100644 --- a/plugins/FeedsParser.inc +++ b/plugins/FeedsParser.inc @@ -237,10 +237,10 @@ class FeedsDateTimeElement extends FeedsElement { protected static function readDateField($node, $field_name) { $field = content_fields($field_name); $ret = new FeedsDateTimeElement(); - if ($node->{$field_name}[0]['date'] instanceof FeedsDateTime) { + if (isset($node->{$field_name}[0]['date']) && $node->{$field_name}[0]['date'] instanceof FeedsDateTime) { $ret->start = $node->{$field_name}[0]['date']; } - if ($node->{$field_name}[0]['date2'] instanceof FeedsDateTime) { + if (isset($node->{$field_name}[0]['date2']) && $node->{$field_name}[0]['date2'] instanceof FeedsDateTime) { $ret->end = $node->{$field_name}[0]['date2']; } return $ret; diff --git a/plugins/FeedsSimplePieParser.inc b/plugins/FeedsSimplePieParser.inc index 650bb189..beb90401 100644 --- a/plugins/FeedsSimplePieParser.inc +++ b/plugins/FeedsSimplePieParser.inc @@ -75,9 +75,9 @@ class FeedsSimplePieParser extends FeedsParser { $item['guid'] = $item['url']; } $author = $simplepie_item->get_author(); - $item['author_name'] = html_entity_decode($author->name); - $item['author_link'] = $author->link; - $item['author_email'] = $author->email; + $item['author_name'] = isset($author->name) ? html_entity_decode($author->name) : ''; + $item['author_link'] = isset($author->link) ? $author->link : ''; + $item['author_email'] = isset($author->email) ? $author->email : ''; // Enclosures $enclosures = $simplepie_item->get_enclosures(); if (is_array($enclosures)) { -- GitLab