Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!
Paste
Pasted as Plain Text by Brian ( 12 years ago )
--- C:/Users/Brian/Downloads/CiviCRM/civicrm-4.3.3-drupal/civicrm/CRM/Import/Parser/Contact.php Thu May 09 12:16:44 2013
+++ C:/Users/Brian/Documents/HMMS/website/sites/all/civicustom/php/CRM/Import/Parser/Contact.php Thu May 30 10:57:50 2013
@@ -1941,37 +1941,48 @@
}
}
}
}
- }
- break;
+ break;
+ case 'Radio':
+ if ( CRM_Utils_Array::value( $key, $formatted ) && CRM_Utils_Array::value( $key, $params ) ) {
+ $customOption = CRM_Core_BAO_CustomOption::getCustomOption( $customFieldID, true );
+ foreach ( $customOption as $opt ) {
+ if ( strtolower( $opt['label'] ) == strtolower( trim( $params[$key] ) ) ) {
+ $params[$key] = $formatted[$key] = $opt['value'];
+ }
+ }
+ }
+ break;
}
}
}
if (($customFieldID = CRM_Core_BAO_CustomField::getKeyID($key)) && array_key_exists($customFieldID, $customFields) &&
!array_key_exists($customFieldID, $addressCustomFields)) {
// @todo calling api functions directly is not supported
Revise this Paste