diff options
author | mkanat%bugzilla.org <> | 2009-01-26 23:05:59 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-01-26 23:05:59 +0100 |
commit | 5beb80569ac428cbdb43930a6a555c8e48335922 (patch) | |
tree | 0b2011d5035e33173bcd46c109a7bf13add30418 | |
parent | 3a9c0c1376d37dfe1dfab12033cc141a73a32d67 (diff) | |
download | bugzilla-5beb80569ac428cbdb43930a6a555c8e48335922.tar.gz bugzilla-5beb80569ac428cbdb43930a6a555c8e48335922.tar.xz |
Bug 474516: specific_search_allow_empty_words should default to on
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
-rw-r--r-- | Bugzilla/Config/Query.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Config/Query.pm b/Bugzilla/Config/Query.pm index 74e265037..fbfdb4c22 100644 --- a/Bugzilla/Config/Query.pm +++ b/Bugzilla/Config/Query.pm @@ -77,7 +77,7 @@ sub get_param_list { { name => 'specific_search_allow_empty_words', type => 'b', - default => 0 + default => 1 } ); |