From d5c3b178067c1d9c0c7f5cf7756c1969443410fd Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 11 May 2005 03:13:37 +0000 Subject: 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- enter_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enter_bug.cgi') diff --git a/enter_bug.cgi b/enter_bug.cgi index 5161fd217..924977a3e 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(); -- cgit v1.2.3-24-g4f1b