diff options
author | lpsolit%gmail.com <> | 2005-05-11 05:13:37 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-05-11 05:13:37 +0200 |
commit | d5c3b178067c1d9c0c7f5cf7756c1969443410fd (patch) | |
tree | 508289d1cf19c982d6548fa908b2fa191b29434c /enter_bug.cgi | |
parent | df89108542a59e1a3a3ccf2cdcab61407989bd46 (diff) | |
download | bugzilla-d5c3b178067c1d9c0c7f5cf7756c1969443410fd.tar.gz bugzilla-d5c3b178067c1d9c0c7f5cf7756c1969443410fd.tar.xz |
Bug 272873: Specifying a null product to enter bug should give me the product chooser - Patch by Frédéric Buclin <LpSolit@gmail.com> r=timeless a=myk
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |