Skip to content
Snippets Groups Projects
Unverified Commit 8b620509 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #15527 from eileenmcnaughton/merge

Fix default mode on Contact.merge api
parents ec8d9acc 6f2c4a24
Branches
Tags
No related merge requests found
......@@ -1195,7 +1195,7 @@ function _civicrm_api3_contact_merge_spec(&$params) {
$params['mode'] = [
'title' => ts('Dedupe mode'),
'description' => ts("In 'safe' mode conflicts will result in no merge. In 'aggressive' mode the merge will still proceed (hook dependent)"),
'api.default' => ['safe', 'aggressive'],
'api.default' => 'safe',
'options' => ['safe' => ts('Abort on unhandled conflict'), 'aggressive' => ts('Proceed on unhandled conflict. Note hooks may change handling here.')],
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment