diff options
author | lpsolit%gmail.com <> | 2005-09-02 06:52:20 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-02 06:52:20 +0200 |
commit | 5432b26b7479c9b90c1e172d285f02c00c173870 (patch) | |
tree | ac9d741c9398aacf562b9c79eb0a848cb37e1ef8 /reports.cgi | |
parent | de1f16178dcae2d517e849e45ee77fd3d636005c (diff) | |
download | bugzilla-5432b26b7479c9b90c1e172d285f02c00c173870.tar.gz bugzilla-5432b26b7479c9b90c1e172d285f02c00c173870.tar.xz |
Bug 298306: For new products, the charting error message "The tool which gathers bug counts has not been run yet" is misleading - Patch by Marc Schumann <wurblzap@gmail.com> r=gerv a=myk
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/reports.cgi b/reports.cgi index 49948e2bb..7274ea8e2 100755 --- a/reports.cgi +++ b/reports.cgi @@ -253,7 +253,11 @@ sub generate_chart { my ($data_file, $image_file, $type, $product, $datasets) = @_; if (! open FILE, $data_file) { - ThrowCodeError("chart_data_not_generated"); + if ($product eq '-All-') { + $product = ''; + } + + ThrowCodeError("chart_data_not_generated", {'product' => $product}); } my @fields; |