summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-07-01 11:00:56 +0200
committerjustdave%syndicomm.com <>2001-07-01 11:00:56 +0200
commit092f07bfc3ff0259544f2dbd99d79868975f7167 (patch)
tree1ccf4d2d16b2467d1f7962045cc66e265bede3c3 /globals.pl
parenta6bd4e9862d6fe2d09b9936188e6a7112cbe547d (diff)
downloadbugzilla-092f07bfc3ff0259544f2dbd99d79868975f7167.tar.gz
bugzilla-092f07bfc3ff0259544f2dbd99d79868975f7167.tar.xz
Fix for bug 87596: improper definition of $::components in globals.pl
Patch by Dave Miller <justdave@syndicomm.com> r= jake@acutex.net
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 2b3456959..aa50355a0 100644
--- a/globals.pl
+++ b/globals.pl
@@ -501,7 +501,7 @@ sub GenerateVersionTable {
foreach my $i (@list) {
if (!defined $::components{$i}) {
- $::components{$i} = "";
+ $::components{$i} = [];
}
}
@::legal_versions = sort {uc($a) cmp uc($b)} keys(%varray);