Skip to content

Commit

Permalink
Merge pull request #13056 from eileenmcnaughton/qs_follow_up
Browse files Browse the repository at this point in the history
Remove limit when choosing fields for quick search
  • Loading branch information
eileenmcnaughton committed Nov 2, 2018
2 parents 1d9a471 + d44e024 commit 1eed318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/SelectValues.php
Expand Up @@ -1151,7 +1151,7 @@ public static function quicksearchOptions() {
'custom_group_id.is_active' => 1,
'is_active' => 1,
'is_searchable' => 1,
'options' => ['sort' => ['custom_group_id.weight', 'weight']],
'options' => ['sort' => ['custom_group_id.weight', 'weight'], 'limit' => 0],
]);
foreach ($custom['values'] as $field) {
$options['custom_' . $field['name']] = $field['custom_group_id.title'] . ': ' . $field['label'];
Expand Down

0 comments on commit 1eed318

Please sign in to comment.