Commit 23bad39c authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 997281: New QuickSearch operators can short-circuit each other depending on…

Bug 997281: New QuickSearch operators can short-circuit each other depending on which ones are tested first r/a=justdave
parent 060fa900
......@@ -402,7 +402,11 @@ sub _handle_field_names {
# Generic field1,field2,field3:value1,value2 notation.
# We have to correctly ignore commas and colons in quotes.
foreach my $symbol (keys %{ OPERATOR_SYMBOLS() }) {
# Longer operators must be tested first as we don't want single character
# operators such as <, > and = to be tested before <=, >= and !=.
my @operators = sort { length($b) <=> length($a) } keys %{ OPERATOR_SYMBOLS() };
foreach my $symbol (@operators) {
my @field_values = _parse_line($symbol, 1, $or_operand);
next unless scalar @field_values == 2;
my @fields = _parse_line(',', 1, $field_values[0]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment