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);
return join(',', sort(@result));
}
+
+1;
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);
return join(',', sort(@result));
}
+
+1;
sub globals_pl_sillyness {
my $zz;
+ $zz = @main::SqlStateStack;
$zz = @main::chooseone;
$zz = @main::default_column_list;
$zz = $main::defaultqueryname;
$zz = @main::legal_versions;
$zz = @main::milestoneurl;
$zz = @main::prodmaxvotes;
+ $zz = $main::superusergroupset;
}
#