Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
ce7bf3fe
Commit
ce7bf3fe
authored
Jun 01, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 72862: fixes more Perl warnings in RelationSet.pm and globals.pl
parent
f30e9271
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
RelationSet.pm
Bugzilla/RelationSet.pm
+7
-1
RelationSet.pm
RelationSet.pm
+7
-1
globals.pl
globals.pl
+2
-0
No files found.
Bugzilla/RelationSet.pm
View file @
ce7bf3fe
...
...
@@ -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
;
RelationSet.pm
View file @
ce7bf3fe
...
...
@@ -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
;
globals.pl
View file @
ce7bf3fe
...
...
@@ -31,6 +31,7 @@ use strict;
sub
globals_pl_sillyness
{
my
$zz
;
$zz
=
@
main::
SqlStateStack
;
$zz
=
@
main::
chooseone
;
$zz
=
@
main::
default_column_list
;
$zz
=
$
main::
defaultqueryname
;
...
...
@@ -48,6 +49,7 @@ sub globals_pl_sillyness {
$zz
=
@
main::
legal_versions
;
$zz
=
@
main::
milestoneurl
;
$zz
=
@
main::
prodmaxvotes
;
$zz
=
$
main::
superusergroupset
;
}
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment