From: lpsolit%gmail.com <> Date: Wed, 11 May 2005 03:13:37 +0000 (+0000) Subject: Bug 272873: Specifying a null product to enter bug should give me the product chooser... X-Git-Tag: bugzilla-2.19.3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5c3b178067c1d9c0c7f5cf7756c1969443410fd;p=thirdparty%2Fbugzilla.git Bug 272873: Specifying a null product to enter bug should give me the product chooser - Patch by Frédéric Buclin r=timeless a=myk --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 5161fd2178..924977a3ee 100755 --- a/enter_bug.cgi +++ b/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();