From: lpsolit%gmail.com <> Date: Wed, 4 Mar 2009 18:33:33 +0000 (+0000) Subject: Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers... X-Git-Tag: bugzilla-3.3.4~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1564690b809ea116d33393e44e77dcf9656fd1de;p=thirdparty%2Fbugzilla.git Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers r/a=LpSolit --- diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index a56ae1637c..04216b80cf 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);