Skip to content
Snippets Groups Projects
Commit 72da5ff6 authored by Jared Hancock's avatar Jared Hancock
Browse files

search: Fix `is` advanced search match

parent f3244b5b
No related branches found
No related tags found
No related merge requests found
...@@ -930,7 +930,7 @@ class FormField { ...@@ -930,7 +930,7 @@ class FormField {
case 'nequal': case 'nequal':
$Q->negate(); $Q->negate();
case 'equal': case 'equal':
$criteria[$name . '__eq'] = $value; $criteria[$name] = $value;
break; break;
case 'contains': case 'contains':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment