Skip to content
Snippets Groups Projects
Unverified Commit 2e3c6c79 authored by colemanw's avatar colemanw Committed by GitHub
Browse files

Merge pull request #31437 from colemanw/fixContactRefAgainBP

Fix #5555 - Saving empty multiselect contact reference field
parents aeb882ec 5aef5a74
Branches
Tags
No related merge requests found
......@@ -131,13 +131,13 @@ class CRM_Core_BAO_CustomValueTable {
$value = NULL;
}
}
elseif ($value == NULL || $value === '') {
$type = 'Timestamp';
$value = NULL;
}
else {
$type = 'Integer';
}
if ($value == NULL || $value === '') {
$type = 'Timestamp';
$value = NULL;
}
break;
case 'EntityReference':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment