summaryrefslogtreecommitdiffstats
path: root/report.cgi
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2011-02-20 08:44:03 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2011-02-20 08:44:03 +0100
commit60712d5d6f5db2a468bea0447744c06d5e8a487c (patch)
treea067c48617f748d6543b6d2759cd6e5ccdccff5c /report.cgi
parent6aad3a0979417a4e131a2ac45ceabfe840aa4af6 (diff)
downloadbugzilla-60712d5d6f5db2a468bea0447744c06d5e8a487c.tar.gz
bugzilla-60712d5d6f5db2a468bea0447744c06d5e8a487c.tar.xz
Bug 632717: Limit the total number of results that a search can ever return.
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'report.cgi')
-rwxr-xr-xreport.cgi7
1 files changed, 5 insertions, 2 deletions
diff --git a/report.cgi b/report.cgi
index 0fbb339f3..60067c7af 100755
--- a/report.cgi
+++ b/report.cgi
@@ -127,8 +127,11 @@ my @axis_fields = ($row_field || EMPTY_COLUMN,
# Clone the params, so that Bugzilla::Search can modify them
my $params = new Bugzilla::CGI($cgi);
-my $search = new Bugzilla::Search('fields' => \@axis_fields,
- 'params' => scalar $params->Vars);
+my $search = new Bugzilla::Search(
+ fields => \@axis_fields,
+ params => scalar $params->Vars,
+ allow_unlimited => 1,
+);
my $query = $search->sql;
$::SIG{TERM} = 'DEFAULT';