Skip to content

Commit

Permalink
CIVICRM-2025 Matching by External / Contact ID always matches contact…
Browse files Browse the repository at this point in the history
…s with ID < 10 for Participant importer and possibly others because return params is not an array
  • Loading branch information
agileware-justin committed Aug 5, 2022
1 parent 6622639 commit 19c0bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Utils/DeprecatedUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function _civicrm_api3_deprecated_duplicate_formatted_contact($params) {
'is_error' => 1,
'error_message' => [
'code' => CRM_Core_Error::DUPLICATE_CONTACT,
'params' => $contact->id,
'params' => [$contact->id],
'level' => 'Fatal',
'message' => "Found matching contacts: $contact->id",
],
Expand Down

0 comments on commit 19c0bd7

Please sign in to comment.