--- 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

Add a code snippet to your website: www.paste.org