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
dff7f2f4
You need to sign in or sign up before continuing.
Commit
dff7f2f4
authored
Sep 14, 2000
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for 51520: Missing uses of Param('emailsuffix')
patch submitted by john.beranek@pace.co.uk (John Beranek)
parent
675e5279
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
globals.pl
globals.pl
+2
-1
processmail
processmail
+3
-1
No files found.
globals.pl
View file @
dff7f2f4
...
...
@@ -731,7 +731,7 @@ sub GetLongDescriptionAsText {
while
(
MoreSQLData
())
{
my
(
$who
,
$when
,
$text
)
=
(
FetchSQLData
());
if
(
$count
)
{
$result
.=
"\n\n------- Additional Comments From $who
"
.
$result
.=
"\n\n------- Additional Comments From $who
"
.
Param
(
'emailsuffix'
)
.
" "
.
time2str
(
"%Y-%m-%d %H:%M"
,
str2time
(
$when
))
.
" -------\n"
;
}
$result
.=
$text
;
...
...
@@ -772,6 +772,7 @@ sub GetLongDescriptionAsHTML {
SendSQL
(
$query
);
while
(
MoreSQLData
())
{
my
(
$who
,
$email
,
$when
,
$text
)
=
(
FetchSQLData
());
$email
.=
Param
(
'emailsuffix'
);
if
(
$count
)
{
$result
.=
"<BR><BR><I>------- Additional Comments From "
;
if
(
$who
)
{
...
...
processmail
View file @
dff7f2f4
...
...
@@ -402,7 +402,7 @@ sub NewProcessOneBug {
my
(
$who
,
$what
,
$when
,
$old
,
$new
)
=
(
@$ref
);
if
(
$who
ne
$lastwho
)
{
$lastwho
=
$who
;
$difftext
.=
"\n$who changed:\n\n"
;
$difftext
.=
"\n$who
"
.
Param
(
'emailsuffix'
)
.
"
changed:\n\n"
;
$difftext
.=
FormatTriple
(
"What "
,
"Old Value"
,
"New Value"
);
$difftext
.=
(
'-'
x
76
)
.
"\n"
;
}
...
...
@@ -570,6 +570,8 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) {
my
$isnew
=
(
$start
!~
m/[1-9]/
);
my
%
substs
;
$person
.=
Param
(
'emailsuffix'
);
$substs
{
"neworchanged"
}
=
$isnew
?
"New"
:
"Changed"
;
$substs
{
"to"
}
=
$person
;
$substs
{
"cc"
}
=
''
;
...
...
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