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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
003f86fb
Commit
003f86fb
authored
Oct 19, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed stupid perl warnings.
parent
91d8db0d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
65 additions
and
0 deletions
+65
-0
CGI.pl
CGI.pl
+8
-0
bug_form.pl
bug_form.pl
+16
-0
defparams.pl
defparams.pl
+9
-0
editcomponents.cgi
editcomponents.cgi
+9
-0
globals.pl
globals.pl
+23
-0
No files found.
CGI.pl
View file @
003f86fb
...
...
@@ -23,6 +23,14 @@
use
diagnostics
;
use
strict
;
# Shut up misguided -w warnings about "used only once". For some reason,
# "use vars" chokes on me when I try it here.
sub
sillyness
{
my
$zz
;
$zz
=
%::
FILENAME
;
}
use
CGI::
Carp
qw(fatalsToBrowser)
;
require
'globals.pl'
;
...
...
bug_form.pl
View file @
003f86fb
...
...
@@ -21,6 +21,22 @@
use
diagnostics
;
use
strict
;
# Shut up misguided -w warnings about "used only once". For some reason,
# "use vars" chokes on me when I try it here.
sub
bug_form_pl_sillyness
{
my
$zz
;
$zz
=
%::
FORM
;
$zz
=
%::
components
;
$zz
=
%::
prodmaxvotes
;
$zz
=
%::
versions
;
$zz
=
@::legal_opsys
;
$zz
=
@::legal_platform
;
$zz
=
@::legal_product
;
$zz
=
@::legal_priority
;
$zz
=
@::legal_resolution_no_dup
;
$zz
=
@::legal_severity
;
}
my
%
knownattachments
;
...
...
defparams.pl
View file @
003f86fb
...
...
@@ -26,6 +26,15 @@
use
diagnostics
;
use
strict
;
# Shut up misguided -w warnings about "used only once". For some reason,
# "use vars" chokes on me when I try it here.
sub
bug_form_pl_sillyness
{
my
$zz
;
$zz
=
%::
param_checker
;
$zz
=
%::
param_desc
;
$zz
=
%::
param_type
;
}
sub
WriteParams
{
foreach
my
$i
(
@::param_list
)
{
...
...
editcomponents.cgi
View file @
003f86fb
...
...
@@ -22,6 +22,15 @@ use strict;
require
"CGI.pl"
;
require
"globals.pl"
;
# Shut up misguided -w warnings about "used only once". For some reason,
# "use vars" chokes on me when I try it here.
sub
sillyness
{
my
$zz
;
$zz
=
$::buffer
;
}
my
$dobugcounts
=
(
defined
$::FORM
{
'dobugcounts'
});
...
...
globals.pl
View file @
003f86fb
...
...
@@ -22,6 +22,29 @@
use
diagnostics
;
use
strict
;
# Shut up misguided -w warnings about "used only once". For some reason,
# "use vars" chokes on me when I try it here.
sub
globals_pl_sillyness
{
my
$zz
;
$zz
=
@
main::
chooseone
;
$zz
=
@
main::
db_errstr
;
$zz
=
@
main::
default_column_list
;
$zz
=
@
main::
dontchange
;
$zz
=
@
main::
legal_bug_status
;
$zz
=
@
main::
legal_components
;
$zz
=
@
main::
legal_opsys
;
$zz
=
@
main::
legal_platform
;
$zz
=
@
main::
legal_priority
;
$zz
=
@
main::
legal_product
;
$zz
=
@
main::
legal_severity
;
$zz
=
@
main::
legal_target_milestone
;
$zz
=
@
main::
legal_versions
;
$zz
=
@
main::
milestoneurl
;
$zz
=
@
main::
prodmaxvotes
;
}
use
Mysql
;
use
Date::
Format
;
# For time2str().
...
...
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