From 03b5a4aa362a0f971f2c7f7d6b94f6d30b738a33 Mon Sep 17 00:00:00 2001 From: giovannidalmas1967 <44569254+giovannidalmas1967@users.noreply.github.com> Date: Fri, 2 Nov 2018 14:36:57 +0100 Subject: [PATCH] Update Form.php --- CRM/Report/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form.php b/CRM/Report/Form.php index 463afe59b8..83b1572880 100644 --- a/CRM/Report/Form.php +++ b/CRM/Report/Form.php @@ -3935,7 +3935,7 @@ ORDER BY cg.weight, cf.weight"; $curFilters[$fieldName]['type'] = CRM_Utils_Type::T_STRING; $options = CRM_Core_PseudoConstant::get('CRM_Core_BAO_CustomField', 'custom_' . $customDAO->cf_id, array(), 'search'); - if ((is_array($options) && count($options)!=0) || (!is_array($options) && $options !== FALSE)) { + if ((is_array($options) && count($options) != 0) || (!is_array($options) && $options !== FALSE)) { $curFilters[$fieldName]['operatorType'] = CRM_Core_BAO_CustomField::isSerialized($customDAO) ? CRM_Report_Form::OP_MULTISELECT_SEPARATOR : CRM_Report_Form::OP_MULTISELECT; $curFilters[$fieldName]['options'] = $options; } -- 2.25.1