]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 272873: Specifying a null product to enter bug should give me the product chooser...
authorlpsolit%gmail.com <>
Wed, 11 May 2005 03:13:37 +0000 (03:13 +0000)
committerlpsolit%gmail.com <>
Wed, 11 May 2005 03:13:37 +0000 (03:13 +0000)
enter_bug.cgi

index 5161fd21784667229cd46aa76b68931f61668504..924977a3ee7c22bc6bbd2282bd3b609ced444341 100755 (executable)
@@ -70,7 +70,7 @@ my $cgi = Bugzilla->cgi;
 
 my $product = $cgi->param('product');
 
-if (!defined $product) {
+if (!defined $product || $product eq "") {
     GetVersionTable();
     Bugzilla->login();