Skip to content
Snippets Groups Projects

CRM-14795 fix for non-editable custom fields

Merged Monish Deb requested to merge github/fork/Edzelopez/CRM-14795 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -140,8 +140,8 @@ class CRM_Grant_Form_Task_Batch extends CRM_Grant_Form_Task {
);
}
if (!empty($entityColumnValue[$typeId]) || (isset($entityColumnValue[$typeId]) &&
CRM_Utils_System::isNull($entityColumnValue[$typeId]))
if (!empty($entityColumnValue[$typeId]) ||
CRM_Utils_System::isNull(CRM_Utils_Array::value($typeId, $entityColumnValue))
) {
CRM_Core_BAO_UFGroup::buildProfile($this, $field, NULL, $grantId);
}
Loading