From d7179ba1dc692e45a05b258e030798e1477e546d Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" Date: Sat, 30 Nov 2002 03:47:41 +0000 Subject: [PATCH] Bug 182512 Charts over time broken patch by joel r=gerv a=justdave --- webtools/bugzilla/reports.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webtools/bugzilla/reports.cgi b/webtools/bugzilla/reports.cgi index 67b175a5ea8..05e19990e43 100755 --- a/webtools/bugzilla/reports.cgi +++ b/webtools/bugzilla/reports.cgi @@ -82,7 +82,8 @@ if (! defined $FORM{'product'}) { # We don't want people to be able to view # reports for products they don't have permissions for... - if (!CanEnterProduct($FORM{'product'})) { + if (($FORM{'product'} ne '-All-') + && (!CanEnterProduct($FORM{'product'}))) { ThrowUserError("report_access_denied"); }