Skip to content
Snippets Groups Projects
Commit b34aa4e9 authored by Eileen McNaughton's avatar Eileen McNaughton
Browse files

#4197 Ensure parameters are correct type

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