From 8b17b8af318400ca513710f99b4c5618a248c9cc Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Wed, 10 Jul 2013 10:13:31 -0700 Subject: [PATCH] Restore comparison operators for search builder selects --- templates/CRM/Contact/Form/Search/Builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Contact/Form/Search/Builder.js b/templates/CRM/Contact/Form/Search/Builder.js index 2ffe50fb81..e46ee5e80d 100644 --- a/templates/CRM/Contact/Form/Search/Builder.js +++ b/templates/CRM/Contact/Form/Search/Builder.js @@ -59,7 +59,7 @@ */ function buildSelect(row, field) { // Remove operators that can't be used with a select - removeOperators(row, ['>', '<', '>=', '<=', 'LIKE', 'RLIKE']); + removeOperators(row, ['LIKE', 'RLIKE']); var op = $('select[id^=operator]', row); if (op.val() == 'IN' || op.val() == 'NOT IN') { var multiSelect = 'multiple="multiple">'; -- 2.25.1