Skip to content

Commit

Permalink
Merge pull request #21728 from yashodha/core_2766
Browse files Browse the repository at this point in the history
(dev/core#2766) provide way to distinguish the core and custom fields…
  • Loading branch information
eileenmcnaughton authored Oct 5, 2021
2 parents 84cc8da + 2e6a487 commit a5793df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Dedupe/BAO/DedupeRuleGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public static function supportedFields($requestedType) {
continue;
}
foreach ($cg['fields'] as $cf) {
$fields[$ctype][$cg['table_name']][$cf['column_name']] = $cf['label'];
$fields[$ctype][$cg['table_name']][$cf['column_name']] = $cg['title'] . ' : ' . $cf['label'];
}
}
}
Expand Down

0 comments on commit a5793df

Please sign in to comment.