aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-03-04 18:35:18 +0000
committerlpsolit%gmail.com <>2009-03-04 18:35:18 +0000
commit54f53fc74040ee3dc8e7c27c30236f58038b31fd (patch)
treef2e2cd4e86f86ef1cc74dcc38a645b7afb61eeef
parentBug 480001: MySQL 5.1.31 throws an error when you try to SET SESSION max_allo... (diff)
downloadbugzilla-54f53fc74040ee3dc8e7c27c30236f58038b31fd.tar.gz
bugzilla-54f53fc74040ee3dc8e7c27c30236f58038b31fd.tar.bz2
bugzilla-54f53fc74040ee3dc8e7c27c30236f58038b31fd.zip
Bug 474779: Quicksearch cannot find mixed/upper case keywords - Patch by Kent Rogers <kar@cray.com> r/a=LpSolit
-rw-r--r--Bugzilla/Search/Quicksearch.pm2
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);