From 8239b8ebaf464d64624cccb92ee6d08b9e604eed Mon Sep 17 00:00:00 2001 From: "tara%tequilarista.org" <> Date: Wed, 7 Jun 2000 05:03:41 +0000 Subject: Fix for bug #40987 --- enter_bug.cgi | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/enter_bug.cgi b/enter_bug.cgi index 086372d23..4dbda8c64 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -237,7 +237,15 @@ my $platform_popup = make_popup('rep_platform', \@::legal_platform, pickplatform(), 0); my $opsys_popup = make_popup('op_sys', \@::legal_opsys, pickos(), 0); -if (1 == @{$::components{$product}}) { +if (0 == $::components{$product}) { + print "

Permission Denied

\n"; + print "Sorry. You need to have at least one component for this product\n"; + print "in order to create a new bug. Go to the \"Components\" link to create\n"; + print "a new component\n"; + print "

\n"; + PutFooter(); + exit; +} elsif (1 == @{$::components{$product}}) { # Only one component; just pick it. $::FORM{'component'} = $::components{$product}->[0]; } -- cgit v1.2.3-24-g4f1b