diff options
author | mkanat%kerio.com <> | 2006-03-09 09:08:57 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2006-03-09 09:08:57 +0100 |
commit | a2eca825a00b33912ec60f797d1112115772ec30 (patch) | |
tree | da4d1e84679afe825f8eb0ef4b1da7d5bc463d67 /Bugzilla/Search | |
parent | efacaaf6ee6b79fca5f256bc29c338b9e51e8c5d (diff) | |
download | bugzilla-a2eca825a00b33912ec60f797d1112115772ec30.tar.gz bugzilla-a2eca825a00b33912ec60f797d1112115772ec30.tar.xz |
Bug 328638: Remove @::legal_keywords and %::keywordsbyname
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r-- | Bugzilla/Search/Quicksearch.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index 4d9958c63..e4224b959 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -27,6 +27,7 @@ use Bugzilla; use Bugzilla::Config; use Bugzilla::Error; use Bugzilla::Constants; +use Bugzilla::Keyword; use Bugzilla::Bug; use base qw(Exporter); @@ -325,7 +326,7 @@ sub quicksearch { $word, $negate); } if (grep({lc($word) eq $_} - @::legal_keywords)) { + map($_->name, Bugzilla::Keyword::get_all_keywords()))) { addChart('keywords', 'substring', $word, $negate); if (length($word)>2) { |