Skip to content
Snippets Groups Projects
Unverified Commit da8804ce authored by mattwire's avatar mattwire Committed by GitHub
Browse files

Merge pull request #25912 from eileenmcnaughton/560

#4197 Ensure parameters are correct type
parents 425aeaf9 b34aa4e9
No related branches found
No related tags found
No related merge requests found
......@@ -2115,9 +2115,9 @@ ORDER BY civicrm_custom_group.weight,
$fieldID = (int) substr($key, 7);
$fieldMetadata = CRM_Core_BAO_CustomField::getCustomFieldsForContactType($contactType, FALSE)[$fieldID] ?? NULL;
if ($fieldMetadata) {
$htmlType = $fieldMetadata['html_type'];
$htmlType = (string) $fieldMetadata['html_type'];
$isSerialized = CRM_Core_BAO_CustomField::isSerialized($fieldMetadata);
$isView = $fieldMetadata['is_view'];
$isView = (bool) $fieldMetadata['is_view'];
if ($isView) {
$viewOnlyCustomFields[$key] = $value;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment