CRM-17299: Yes or No custom fields not displayed correctly in table
authoryashodha <yashodha.chaku@webaccessglobal.com>
Tue, 6 Oct 2015 13:29:46 +0000 (18:59 +0530)
committeryashodha <yashodha.chaku@webaccessglobal.com>
Tue, 6 Oct 2015 13:29:46 +0000 (18:59 +0530)
----------------------------------------
* CRM-17299: "Yes or No" custom fields not displayed correctly in table
  https://issues.civicrm.org/jira/browse/CRM-17299

CRM/Core/BAO/CustomField.php

index 3d5b8b6eaf31c558bdcc91f2a6c8e02e7e688e9b..438c4634dc41df3a9648b5c1671361d4a6fee8b9 100644 (file)
@@ -1177,16 +1177,16 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
     switch ($html_type) {
       case 'Radio':
         if ($data_type == 'Boolean') {
-          $option = array('No', 'Yes');
+          $options = array('No', 'Yes');
         }
         if (is_array($value)) {
           $display = NULL;
           foreach ($value as $data) {
-            $display .= $display ? ', ' . $option[$data] : $option[$data];
+            $display .= $display ? ', ' . $options[$data] : $options[$data];
           }
         }
         else {
-          $display = CRM_Utils_Array::value($value, $option);
+          $display = CRM_Utils_Array::value($value, $options);
         }
         break;