summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-25 23:57:21 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-25 23:57:21 +0200
commitd386a4e8d5eeb9936c0d60029d5193dcf547e442 (patch)
treeae84d21cd49660cb09e2a813b3a727412cd857d8 /Bugzilla
parent5d7fe9663489ae277a5004f3933b0ab0a189d3bc (diff)
downloadbugzilla-d386a4e8d5eeb9936c0d60029d5193dcf547e442.tar.gz
bugzilla-d386a4e8d5eeb9936c0d60029d5193dcf547e442.tar.xz
One-character fix in Bugzilla::Search--in OPERATOR_FIELD_OVERRIDE,
"anyword" for keywords should have been "anywords".
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index a95bb0599..e164e6332 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -155,7 +155,7 @@ use constant OPERATOR_FIELD_OVERRIDE => {
equals => \&_keywords_exact,
notequals => \&_keywords_exact,
anyexact => \&_keywords_exact,
- anyword => \&_keywords_exact,
+ anywords => \&_keywords_exact,
allwords => \&_keywords_exact,
nowords => \&_keywords_exact,
_non_changed => \&_keywords_nonchanged,