diff options
author | Reed Loden <reed@reedloden.com> | 2010-02-10 04:57:13 +0100 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-02-10 04:57:13 +0100 |
commit | 8f239b454b12bbef4d3ef6172e03e3006ae2679d (patch) | |
tree | 1c597c07a13aae1395c02559ef3d2b04a5a78b2c /Bugzilla/Search | |
parent | ca5d050384e186efd138c8d3437ffc41dde4e73d (diff) | |
download | bugzilla-8f239b454b12bbef4d3ef6172e03e3006ae2679d.tar.gz bugzilla-8f239b454b12bbef4d3ef6172e03e3006ae2679d.tar.xz |
Bug 527641 - "QuickSearch should include aliases in default search chart" [r=mkanat a=mkanat]
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r-- | Bugzilla/Search/Quicksearch.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm index e3dcc7e89..2f9e0734f 100644 --- a/Bugzilla/Search/Quicksearch.pm +++ b/Bugzilla/Search/Quicksearch.pm @@ -485,6 +485,7 @@ sub _default_quicksearch_word { addChart('keywords', 'substring', $word, $negate); } + addChart('alias', 'substring', $word, $negate); addChart('short_desc', 'substring', $word, $negate); addChart('status_whiteboard', 'substring', $word, $negate); addChart('content', 'matches', $word, $negate); |