From 1564690b809ea116d33393e44e77dcf9656fd1de Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 4 Mar 2009 18:33:33 +0000 Subject: Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers r/a=LpSolit --- Bugzilla/Search/Quicksearch.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Search') diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index a56ae1637..04216b80c 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -350,7 +350,7 @@ sub quicksearch { addChart('component', 'substring', $word, $negate); } - if (grep({lc($word) eq $_} + if (grep({lc($word) eq lc($_)} map($_->name, Bugzilla::Keyword->get_all))) { addChart('keywords', 'substring', $word, $negate); -- cgit v1.2.3-24-g4f1b