Commit d386a4e8 authored by Max Kanat-Alexander's avatar Max Kanat-Alexander

One-character fix in Bugzilla::Search--in OPERATOR_FIELD_OVERRIDE,

"anyword" for keywords should have been "anywords".
parent 5d7fe966
...@@ -155,7 +155,7 @@ use constant OPERATOR_FIELD_OVERRIDE => { ...@@ -155,7 +155,7 @@ use constant OPERATOR_FIELD_OVERRIDE => {
equals => \&_keywords_exact, equals => \&_keywords_exact,
notequals => \&_keywords_exact, notequals => \&_keywords_exact,
anyexact => \&_keywords_exact, anyexact => \&_keywords_exact,
anyword => \&_keywords_exact, anywords => \&_keywords_exact,
allwords => \&_keywords_exact, allwords => \&_keywords_exact,
nowords => \&_keywords_exact, nowords => \&_keywords_exact,
_non_changed => \&_keywords_nonchanged, _non_changed => \&_keywords_nonchanged,
......
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