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
1e249333
Commit
1e249333
authored
Nov 26, 2005
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
parent
320d2aa1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
Bugzilla.pm
Bugzilla.pm
+1
-1
CGI.pm
Bugzilla/CGI.pm
+1
-1
Config.pm
Bugzilla/Config.pm
+2
-2
Util.pm
Bugzilla/Util.pm
+1
-1
bug_email.pl
contrib/bug_email.pl
+5
-5
bugzilla_email_append.pl
contrib/bugzilla_email_append.pl
+1
-1
No files found.
Bugzilla.pm
View file @
1e249333
...
...
@@ -330,7 +330,7 @@ This approach has several advantages:
=item *
They're not global variables, so we don't have issues with them staying ar
r
ound
They're not global variables, so we don't have issues with them staying around
with mod_perl
=item *
...
...
Bugzilla/CGI.pm
View file @
1e249333
...
...
@@ -183,7 +183,7 @@ sub multipart_start {
}
# The various parts of Bugzilla which create cookies don't want to have to
# pass them ar
r
ound to all of the callers. Instead, store them locally here,
# pass them around to all of the callers. Instead, store them locally here,
# and then output as required from |header|.
sub
send_cookie
{
my
$self
=
shift
;
...
...
Bugzilla/Config.pm
View file @
1e249333
...
...
@@ -192,8 +192,8 @@ sub SetParam {
# sanity check the value
# XXX - This runs the checks. Which would be good, except that
# check_shadowdb creates the database as a sideeffect, and so the
# checker fails the second time ar
r
ound...
# check_shadowdb creates the database as a side
effect, and so the
# checker fails the second time around...
if
(
$name
ne
'shadowdb'
&&
exists
$entry
->
{
'checker'
})
{
my
$err
=
$entry
->
{
'checker'
}
->
(
$value
,
$entry
);
die
"Param $name is not valid: $err"
unless
$err
eq
''
;
...
...
Bugzilla/Util.pm
View file @
1e249333
...
...
@@ -94,7 +94,7 @@ sub html_quote {
return
$var
;
}
# This orignally came from CGI.pm, by Lincoln D. Stein
# This orig
i
nally came from CGI.pm, by Lincoln D. Stein
sub
url_quote
{
my
(
$toencode
)
=
(
@_
);
$toencode
=~
s/([^a-zA-Z0-9_\-.])/uc sprintf("%%%02x",ord($1))/eg
;
...
...
contrib/bug_email.pl
View file @
1e249333
...
...
@@ -38,7 +38,7 @@
#
# You need to work with bug_email.pl the MIME::Parser installed.
#
# $Id: bug_email.pl,v 1.3
0 2005/11/25 19:47:38
timeless%mozdev.org Exp $
# $Id: bug_email.pl,v 1.3
1 2005/11/25 21:57:07
timeless%mozdev.org Exp $
###############################################################
# 02/12/2000 (SML)
...
...
@@ -448,7 +448,7 @@ sub FetchAllSQLData( )
# BugMailError takes two arguments: The first one is a flag, how heavy
# the error is:
#
# 0 - It
s an error, but b
ugzilla can process the bug. The user should
# 0 - It
's an error, but B
ugzilla can process the bug. The user should
# handle that as a warning.
#
# 1 - It's a real bug. Bugzilla can't store the bug. The mail has to be
...
...
@@ -457,7 +457,7 @@ sub FetchAllSQLData( )
# 2 - Permission error: The user does not have the permission to send
# a bug.
#
# The second argument is a Text which describs the bug.
# The second argument is a Text which describ
e
s the bug.
#
#
# #
...
...
@@ -747,7 +747,7 @@ my $Sender = $entity->get( 'From' );
$Sender
||=
$entity
->
get
(
'Reply-To'
);
$Message_ID
=
$entity
->
get
(
'Message-Id'
);
die
(
" *** Can
t find Sender-a
dress in sent mail ! ***\n"
)
unless
defined
(
$Sender
);
die
(
" *** Can
't find Sender-ad
dress in sent mail ! ***\n"
)
unless
defined
(
$Sender
);
chomp
(
$Sender
);
chomp
(
$Message_ID
);
...
...
@@ -852,7 +852,7 @@ my $Product = $DEFAULT_PRODUCT;
$Product
=
CheckProduct
(
$Control
{
'product'
}
)
if
(
defined
(
$Control
{
'product'
}
));
if
(
$Product
eq
""
)
{
my
$Text
=
"You didnt send a value for the required key \@product !\n\n"
;
my
$Text
=
"You didn
'
t send a value for the required key \@product !\n\n"
;
$Text
=
"You sent the invalid product \"$Control{'product'}\"!\n\n"
if
(
defined
(
$Control
{
'product'
}
));
...
...
contrib/bugzilla_email_append.pl
View file @
1e249333
...
...
@@ -65,7 +65,7 @@ my $Sender = $entity->get( 'From' );
$Sender
||=
$entity
->
get
(
'Reply-To'
);
my
$Message_ID
=
$entity
->
get
(
'Message-Id'
);
die
(
" *** Can
t find Sender-a
dress in sent mail ! ***\n"
)
unless
defined
(
$Sender
);
die
(
" *** Can
't find Sender-ad
dress in sent mail ! ***\n"
)
unless
defined
(
$Sender
);
chomp
(
$Sender
);
chomp
(
$Message_ID
);
...
...
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