diff options
Diffstat (limited to 'Bugzilla')
-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; } |