From 0d522b533456e1487bb2babb0ed360ebd9e96a71 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 18 Jun 2017 22:25:40 -0400 Subject: [PATCH] Whitespace fixes --- CRM/Contact/Import/Parser/Contact.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CRM/Contact/Import/Parser/Contact.php b/CRM/Contact/Import/Parser/Contact.php index 4e3cb95ad5..d4a299813b 100644 --- a/CRM/Contact/Import/Parser/Contact.php +++ b/CRM/Contact/Import/Parser/Contact.php @@ -543,15 +543,15 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser { $possibleMatches = $this->getPossibleContactMatches($params); } catch (CRM_Core_Exception $e) { - $errorMessage = $e->getMessage(); - array_unshift($values, $errorMessage); + $errorMessage = $e->getMessage(); + array_unshift($values, $errorMessage); $importRecordParams = array( $statusFieldName => 'ERROR', - "${statusFieldName}Msg" => $errorMessage - ); - $this->updateImportRecord($values[count($values) - 1], $importRecordParams); - return CRM_Import_Parser::ERROR; + "${statusFieldName}Msg" => $errorMessage, + ); + $this->updateImportRecord($values[count($values) - 1], $importRecordParams); + return CRM_Import_Parser::ERROR; } foreach ($possibleMatches as $possibleID) { $params['id'] = $formatted['id'] = $possibleID; -- 2.25.1