diff options
author | lpsolit%gmail.com <> | 2009-03-04 19:33:33 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-03-04 19:33:33 +0100 |
commit | 1564690b809ea116d33393e44e77dcf9656fd1de (patch) | |
tree | 904e61b4a20f46a34cb13432c9574a77b36eb045 /Bugzilla | |
parent | a1bc4c8640add65465bc796a02fb7d07c51d59e4 (diff) | |
download | bugzilla-1564690b809ea116d33393e44e77dcf9656fd1de.tar.gz bugzilla-1564690b809ea116d33393e44e77dcf9656fd1de.tar.xz |
Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers <kar@cray.com> r/a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search/Quicksearch.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); |