From f630564bf102ccc9786a5d1b1602dbf2c97bcf6b Mon Sep 17 00:00:00 2001 From: Chris Leppanen <chris.leppanen@gmail.com> Date: Tue, 9 Dec 2014 16:09:13 -0800 Subject: [PATCH] Issue #2390199 by GuyPaddock: Unhelpful failure upon uploading an empty CSV file --- plugins/FeedsCSVParser.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc index 0dada59d..0d86e5eb 100644 --- a/plugins/FeedsCSVParser.inc +++ b/plugins/FeedsCSVParser.inc @@ -28,7 +28,8 @@ class FeedsCSVParser extends FeedsParser { // Get first line and use it for column names, convert them to lower case. $header = $this->parseHeader($parser, $iterator); if (!$header) { - return FeedsParserResult(); + drupal_set_message(t('The CSV file is empty.'), 'warning', FALSE); + return new FeedsParserResult(); } $parser->setColumnNames($header); } -- GitLab