From: jocuri%softhome.net <> Date: Sat, 27 Mar 2004 05:02:43 +0000 (+0000) Subject: Patch for bug 237369: implement relatively simple changes from %FORM to $cgi->param... X-Git-Tag: bugzilla-2.18rc1~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a66d86a8e68f82de2d17d086204f538238ce0727;p=thirdparty%2Fbugzilla.git Patch for bug 237369: implement relatively simple changes from %FORM to $cgi->param variable; patch by Teemu Mannermaa ; r=kiko, justdave; a=justdave. --- diff --git a/describecomponents.cgi b/describecomponents.cgi index 922a4912e9..1926a88269 100755 --- a/describecomponents.cgi +++ b/describecomponents.cgi @@ -42,7 +42,7 @@ GetVersionTable(); my $cgi = Bugzilla->cgi; my $product = $cgi->param('product'); -if (!$product) { +if (!defined $product) { # Reference to a subset of %::proddesc, which the user is allowed to see my %products;