From ebe72dec68220976dfebbb0f5e83418cc0071f7e Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Tue, 10 May 2005 20:13:37 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20272873:=20Specifying=20a=20null=20product?= =?UTF-8?q?=20to=20enter=20bug=20should=20give=20me=20the=20product=20choo?= =?UTF-8?q?ser=20-=20Patch=20by=20Fr=C3=A9d=C3=A9ric=20Buclin=20=20r=3Dtimeless=20a=3Dmyk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@173261 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/enter_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/enter_bug.cgi b/mozilla/webtools/bugzilla/enter_bug.cgi index 5161fd21784..924977a3ee7 100755 --- a/mozilla/webtools/bugzilla/enter_bug.cgi +++ b/mozilla/webtools/bugzilla/enter_bug.cgi @@ -70,7 +70,7 @@ my $cgi = Bugzilla->cgi; my $product = $cgi->param('product'); -if (!defined $product) { +if (!defined $product || $product eq "") { GetVersionTable(); Bugzilla->login();