diff options
author | lpsolit%gmail.com <> | 2007-06-27 01:35:56 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-06-27 01:35:56 +0200 |
commit | f32106f83ffc2dda1420123744881f0e740aa715 (patch) | |
tree | fad10fadb4cb4bea8fe05432bd092cdc5828a58d /Bugzilla/Config | |
parent | 8699690c76360c62e748f5557831243322655bfd (diff) | |
download | bugzilla-f32106f83ffc2dda1420123744881f0e740aa715.tar.gz bugzilla-f32106f83ffc2dda1420123744881f0e740aa715.tar.xz |
Bug 385910: Add parameter to allow "find a specific bug" to accept an empty search - Patch by Brad Johnson <fk7q01p02@sneakemail.com> r/a=LpSolit
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/Query.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Bugzilla/Config/Query.pm b/Bugzilla/Config/Query.pm index e3996a0ee..afd330898 100644 --- a/Bugzilla/Config/Query.pm +++ b/Bugzilla/Config/Query.pm @@ -72,7 +72,15 @@ sub get_param_list { type => 't', default => '4', checker => \&check_numeric - } ); + }, + + { + name => 'quicksearch_allow_empty_words', + type => 'b', + default => 0 + } + + ); return @param_list; } |