aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-06-01 09:14:23 +0000
committerjustdave%syndicomm.com <>2001-06-01 09:14:23 +0000
commitce7bf3fec2b2e1aaef1d538692d9dfe7bec93f17 (patch)
tree2507cde330522c12b54d3de574aaf23c3e749246 /RelationSet.pm
parentFix for bug 57848, perl warnings in several files. (diff)
downloadbugzilla-ce7bf3fec2b2e1aaef1d538692d9dfe7bec93f17.tar.gz
bugzilla-ce7bf3fec2b2e1aaef1d538692d9dfe7bec93f17.tar.bz2
bugzilla-ce7bf3fec2b2e1aaef1d538692d9dfe7bec93f17.zip
Fix for bug 72862: fixes more Perl warnings in RelationSet.pm and globals.pl
Diffstat (limited to 'RelationSet.pm')
-rw-r--r--RelationSet.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/RelationSet.pm b/RelationSet.pm
index bc31c96c7..4b778a6fd 100644
--- a/RelationSet.pm
+++ b/RelationSet.pm
@@ -32,7 +32,11 @@
use diagnostics;
use strict;
-require "globals.pl";
+# Everything that uses RelationSet should already have globals.pl loaded
+# so we don't want to load it here. Doing so causes a loop in Perl because
+# globals.pl turns around and does a 'use RelationSet'
+# See http://bugzilla.mozilla.org/show_bug.cgi?id=72862
+#require "globals.pl";
package RelationSet;
use CGI::Carp qw(fatalsToBrowser);
@@ -260,3 +264,5 @@ sub toString {
return join(',', sort(@result));
}
+
+1;