summaryrefslogtreecommitdiffstats
path: root/CGI.pl
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2000-08-22 04:50:41 +0200
committercyeh%bluemartini.com <>2000-08-22 04:50:41 +0200
commite8b93c7c68c4b56cdc10249ba3740a504f30e2ee (patch)
tree255dc20e2b66d93674fb7839e75049709b6e88d4 /CGI.pl
parent2cd9592d7760d10b8840e155380b5dc4d2b62ff0 (diff)
downloadbugzilla-e8b93c7c68c4b56cdc10249ba3740a504f30e2ee.tar.gz
bugzilla-e8b93c7c68c4b56cdc10249ba3740a504f30e2ee.tar.xz
fix for bug #44622: perl5.6 vs perl5.005 -w: more anal 5.6 causes errors.
patches by mtakacs@pacbell.net.
Diffstat (limited to 'CGI.pl')
-rw-r--r--CGI.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/CGI.pl b/CGI.pl
index 085b31cf3..9c7484b93 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -118,7 +118,7 @@ sub ParseUrlString {
$isnull{$name} = 1;
}
}
- if (defined %isnull) {
+ if (%isnull) {
foreach my $name (keys(%isnull)) {
if (!defined $f->{$name}) {
$f->{$name} = "";