diff options
author | mkanat%bugzilla.org <> | 2006-06-01 09:23:17 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-06-01 09:23:17 +0200 |
commit | 24a02ebf00c318c3406fc4c4f38a8f93480b0548 (patch) | |
tree | 7680b275b7ea3e00a221d5a62e4a43ea42169752 /Bugzilla/Search | |
parent | 24a97437dccabbe0778e2e4f8330b47aefda428d (diff) | |
download | bugzilla-24a02ebf00c318c3406fc4c4f38a8f93480b0548.tar.gz bugzilla-24a02ebf00c318c3406fc4c4f38a8f93480b0548.tar.xz |
Bug 329377: Bugzilla::Object base class for objects
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, r=kevin.benton, a=justdave
Diffstat (limited to 'Bugzilla/Search')
-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 e4224b959..13c185d7d 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -326,7 +326,7 @@ sub quicksearch { $word, $negate); } if (grep({lc($word) eq $_} - map($_->name, Bugzilla::Keyword::get_all_keywords()))) { + map($_->name, Bugzilla::Keyword->get_all))) { addChart('keywords', 'substring', $word, $negate); if (length($word)>2) { |