small code optimization
authorFranky Van Liedekerke <liedekef@localhost.localdomain>
Thu, 6 Oct 2016 15:07:09 +0000 (17:07 +0200)
committerFranky Van Liedekerke <liedekef@localhost.localdomain>
Thu, 6 Oct 2016 15:07:09 +0000 (17:07 +0200)
CRM/Custom/Import/Form/MapField.php

index cf8614a787e6da026953c8611dea7b7635de3990..f404fbef1474e18d7c25ac3596e4875ac6f87951 100644 (file)
@@ -23,9 +23,7 @@ class CRM_Custom_Import_Form_MapField extends CRM_Contact_Import_Form_MapField {
     $this->_columnCount = $this->get('columnCount');
     $this->assign('columnCount', $this->_columnCount);
     $this->_dataValues = $this->get('dataValues');
-    $highlightedFields = array();
-    $highlightedFields[] = 'contact_id';
-    $highlightedFields[] = 'external_identifier';
+    $highlightedFields = array('contact_id', 'external_identifier');
 
     //Separate column names from actual values.
     $columnNames = $this->_dataValues[0];
@@ -80,7 +78,7 @@ class CRM_Custom_Import_Form_MapField extends CRM_Contact_Import_Form_MapField {
         if (!isset($errors['_qf_default'])) {
           $errors['_qf_default'] = '';
         }
-        $errors['_qf_default'] .= ts('Missing required field: %1', array(1 => ts('Contact ID')));
+        $errors['_qf_default'] .= ts('Missing required field: %1', array(1 => ts('Contact ID or External Identifier')));
       }
     }