Skip to content

Commit

Permalink
Merge pull request #17978 from kainuk/issue-1914
Browse files Browse the repository at this point in the history
Fixed filling default values for tagssets in the advanced search form
  • Loading branch information
eileenmcnaughton authored Jul 29, 2020
2 parents d219110 + b0152e8 commit 6c73585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Contact/Form/Search/Advanced.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public function setDefaultValues() {
'privacy_toggle' => 1,
'operator' => 'AND',
], $defaults);
$this->normalizeDefaultValues($defaults);
$defaults = $this->normalizeDefaultValues($defaults);

//991/Subtypes not respected when editing smart group criteria
if (!empty($defaults['contact_type']) && !empty($this->_formValues['contact_sub_type'])) {
Expand Down

0 comments on commit 6c73585

Please sign in to comment.