summaryrefslogtreecommitdiffstats
path: root/reports.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-04-10 19:07:16 +0200
committerlpsolit%gmail.com <>2007-04-10 19:07:16 +0200
commit8918a55e52c9badc177a791a4e70b1033c6615b7 (patch)
tree7a244379b60d3f084833d870b56cf622bfa29ce4 /reports.cgi
parent49ac4e07d266ab55285e6c497cab5d17c56e8fcf (diff)
downloadbugzilla-8918a55e52c9badc177a791a4e70b1033c6615b7.tar.gz
bugzilla-8918a55e52c9badc177a791a4e70b1033c6615b7.tar.xz
Bug 344969: Remove hardcoded bug statuses from collectstats.pl and reports.cgi (prepare them for custom statuses) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=gerv a=LpSolit
Diffstat (limited to 'reports.cgi')
-rwxr-xr-xreports.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/reports.cgi b/reports.cgi
index 2c9f8facc..0be2ab64b 100755
--- a/reports.cgi
+++ b/reports.cgi
@@ -75,7 +75,7 @@ if (! defined $cgi->param('product')) {
|| ThrowCodeError('chart_dir_nonexistent',
{dir => $dir, graph_dir => $graph_dir});
- my %default_sel = map { $_ => 1 } qw/UNCONFIRMED NEW ASSIGNED REOPENED/;
+ my %default_sel = map { $_ => 1 } BUG_STATE_OPEN;
my @datasets;
my @data = get_data($dir);