NFC tidy up comments, remove unused variables in customfield classes
[civicrm-core.git] / CRM / Core / BAO / CustomField.php
index 58e19ef54110d01e05254f4e5b310ab36dadeecd..d8c9642818708d12009f5b432d09c2dec1012deb 100644 (file)
@@ -1307,7 +1307,7 @@ class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
 
       case 'Text':
         if ($field['data_type'] == 'Money' && isset($value)) {
-          //$value can also be an array(while using IN operator from search builder or api).
+          // $value can also be an array(while using IN operator from search builder or api).
           foreach ((array) $value as $val) {
             $disp[] = CRM_Utils_Money::format($val, NULL, NULL, TRUE);
           }