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
c72bfb0d
Commit
c72bfb0d
authored
22 years ago
by
matty%chariot.net.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling fixes.
parent
b60223f9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
Config.pm
Bugzilla/Config.pm
+3
-3
checksetup.pl
checksetup.pl
+2
-2
globals.pl
globals.pl
+2
-2
process_bug.cgi
process_bug.cgi
+1
-1
No files found.
Bugzilla/Config.pm
View file @
c72bfb0d
...
@@ -30,11 +30,11 @@ package Bugzilla::Config;
...
@@ -30,11 +30,11 @@ package Bugzilla::Config;
=head1 NAME
=head1 NAME
Bugzilla::Config - Configuration param
a
ters for Bugzilla
Bugzilla::Config - Configuration param
e
ters for Bugzilla
=head1 SYNOPSIS
=head1 SYNOPSIS
# Getting param
a
ters
# Getting param
e
ters
use Bugzilla::Config;
use Bugzilla::Config;
my $fooSetting = Param('foo');
my $fooSetting = Param('foo');
...
@@ -172,7 +172,7 @@ sub Param {
...
@@ -172,7 +172,7 @@ sub Param {
=item C<GetParamList()>
=item C<GetParamList()>
Returns the list of known param
a
ter types, from defparams.pl. Users should not
Returns the list of known param
e
ter types, from defparams.pl. Users should not
rely on this method; it is intended for editparams/doeditparams only
rely on this method; it is intended for editparams/doeditparams only
The format for the list is specified in defparams.pl
The format for the list is specified in defparams.pl
...
...
This diff is collapsed.
Click to expand it.
checksetup.pl
View file @
c72bfb0d
...
@@ -679,8 +679,8 @@ $::ENV{'PATH'} = $origPath;
...
@@ -679,8 +679,8 @@ $::ENV{'PATH'} = $origPath;
# The |require "globals.pl"| above ends up creating a template object with
# The |require "globals.pl"| above ends up creating a template object with
# a COMPILE_DIR of 'data'. This means that TT creates the directory for us,
# a COMPILE_DIR of 'data'. This means that TT creates the directory for us,
# so this code wouldn't run if we just checked for the exist
a
nce of the
# so this code wouldn't run if we just checked for the exist
e
nce of the
# directory. Instead, check for the exist
a
nce of 'data/nomail', which is
# directory. Instead, check for the exist
e
nce of 'data/nomail', which is
# created in this block
# created in this block
unless
(
-
d
'data'
&&
-
e
'data/nomail'
)
{
unless
(
-
d
'data'
&&
-
e
'data/nomail'
)
{
print
"Creating data directory ...\n"
;
print
"Creating data directory ...\n"
;
...
...
This diff is collapsed.
Click to expand it.
globals.pl
View file @
c72bfb0d
...
@@ -997,7 +997,7 @@ sub quoteUrls {
...
@@ -997,7 +997,7 @@ sub quoteUrls {
}
}
# GetBugLink creates a link to a bug, including its title.
# GetBugLink creates a link to a bug, including its title.
# It takes either two or three param
a
ters:
# It takes either two or three param
e
ters:
# - The bug number
# - The bug number
# - The link text, to place between the <a>..</a>
# - The link text, to place between the <a>..</a>
# - An optional comment number, for linking to a particular
# - An optional comment number, for linking to a particular
...
@@ -1248,7 +1248,7 @@ sub GroupIsActive {
...
@@ -1248,7 +1248,7 @@ sub GroupIsActive {
}
}
# Determines if the given bug_status string represents an "Opened" bug. This
# Determines if the given bug_status string represents an "Opened" bug. This
# routine ought to be param
a
terizable somehow, as people tend to introduce
# routine ought to be param
e
terizable somehow, as people tend to introduce
# new states into Bugzilla.
# new states into Bugzilla.
sub
IsOpenedState
{
sub
IsOpenedState
{
...
...
This diff is collapsed.
Click to expand it.
process_bug.cgi
View file @
c72bfb0d
...
@@ -1406,7 +1406,7 @@ foreach my $id (@idlist) {
...
@@ -1406,7 +1406,7 @@ foreach my $id (@idlist) {
SendSQL
(
"SELECT who FROM cc WHERE bug_id = "
.
SqlQuote
(
$duplicate
)
.
" and who = $reporter"
);
SendSQL
(
"SELECT who FROM cc WHERE bug_id = "
.
SqlQuote
(
$duplicate
)
.
" and who = $reporter"
);
my
$isoncc
=
FetchOneColumn
();
my
$isoncc
=
FetchOneColumn
();
unless
(
$isreporter
||
$isoncc
||
!
$::FORM
{
'confirm_add_duplicate'
})
{
unless
(
$isreporter
||
$isoncc
||
!
$::FORM
{
'confirm_add_duplicate'
})
{
# The reporter is oblivious to the exist
a
nce of the new bug and is permitted access
# The reporter is oblivious to the exist
e
nce of the new bug and is permitted access
# ... add 'em to the cc (and record activity)
# ... add 'em to the cc (and record activity)
LogActivityEntry
(
$duplicate
,
"cc"
,
""
,
DBID_to_name
(
$reporter
));
LogActivityEntry
(
$duplicate
,
"cc"
,
""
,
DBID_to_name
(
$reporter
));
SendSQL
(
"INSERT INTO cc (who, bug_id) VALUES ($reporter, "
.
SqlQuote
(
$duplicate
)
.
")"
);
SendSQL
(
"INSERT INTO cc (who, bug_id) VALUES ($reporter, "
.
SqlQuote
(
$duplicate
)
.
")"
);
...
...
This diff is collapsed.
Click to expand it.
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