summaryrefslogtreecommitdiffstats
path: root/describecomponents.cgi
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-03-27 06:02:43 +0100
committerjocuri%softhome.net <>2004-03-27 06:02:43 +0100
commita66d86a8e68f82de2d17d086204f538238ce0727 (patch)
treeff1fdef5e7a6cee7483674083923985162988678 /describecomponents.cgi
parentc0fc50d35b1e3320b28b281c16489f78babc5abb (diff)
downloadbugzilla-a66d86a8e68f82de2d17d086204f538238ce0727.tar.gz
bugzilla-a66d86a8e68f82de2d17d086204f538238ce0727.tar.xz
Patch for bug 237369: implement relatively simple changes from %FORM to $cgi->param variable; patch by Teemu Mannermaa <wicked@etlicon.fi>; r=kiko, justdave; a=justdave.
Diffstat (limited to 'describecomponents.cgi')
-rwxr-xr-xdescribecomponents.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/describecomponents.cgi b/describecomponents.cgi
index 922a4912e..1926a8826 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;