summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Query.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-06-27 01:35:56 +0200
committerlpsolit%gmail.com <>2007-06-27 01:35:56 +0200
commitf32106f83ffc2dda1420123744881f0e740aa715 (patch)
treefad10fadb4cb4bea8fe05432bd092cdc5828a58d /Bugzilla/Config/Query.pm
parent8699690c76360c62e748f5557831243322655bfd (diff)
downloadbugzilla-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/Query.pm')
-rw-r--r--Bugzilla/Config/Query.pm10
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;
}