Commit 1564690b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent…

Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers <kar@cray.com> r/a=LpSolit
parent a1bc4c86
......@@ -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);
......
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