diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-11-26 01:08:58 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-11-26 01:08:58 +0100 |
commit | c9aaffd4541554af069e4ac097c39f567b02f55a (patch) | |
tree | 13498d0860a3d4616f26d5f56e767f382678c682 /collectstats.pl | |
parent | Bug 703975: CSRF vulnerability in post_bug.cgi allows possible unauthorized b... (diff) | |
download | bugzilla-c9aaffd4541554af069e4ac097c39f567b02f55a.tar.gz bugzilla-c9aaffd4541554af069e4ac097c39f567b02f55a.tar.bz2 bugzilla-c9aaffd4541554af069e4ac097c39f567b02f55a.zip |
Bug 255606: Do not let buglist.cgi return all bugs by default
r/a=mkanat
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-x | collectstats.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/collectstats.pl b/collectstats.pl index 26bead6ab..007669fad 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -507,6 +507,7 @@ sub CollectSeriesData { eval { my $search = new Bugzilla::Search('params' => scalar $cgi->Vars, 'fields' => ["bug_id"], + 'allow_unlimited' => 1, 'user' => $user); my $sql = $search->sql; $data = $shadow_dbh->selectall_arrayref($sql); |