summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/Query.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Config/Query.pm')
-rw-r--r--Bugzilla/Config/Query.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/Bugzilla/Config/Query.pm b/Bugzilla/Config/Query.pm
index 821f09fc6..3513b12e3 100644
--- a/Bugzilla/Config/Query.pm
+++ b/Bugzilla/Config/Query.pm
@@ -71,8 +71,14 @@ sub get_param_list {
name => 'specific_search_allow_empty_words',
type => 'b',
default => 1
- }
-
+ },
+
+ {
+ name => 'max_search_results',
+ type => 't',
+ default => '10000',
+ checker => \&check_numeric
+ },
);
return @param_list;
}