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
132fcaa1
Commit
132fcaa1
authored
Jan 28, 2008
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 410521: The diffs in bugmails were broken and BugMail.pm was throwing a warning about sprintf.
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
parent
46381d01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
BugMail.pm
Bugzilla/BugMail.pm
+1
-1
No files found.
Bugzilla/BugMail.pm
View file @
132fcaa1
...
...
@@ -71,7 +71,7 @@ sub multiline_sprintf {
my
(
$format
,
$args
,
$sizes
)
=
@_
;
my
@parts
;
my
@my_sizes
=
@$sizes
;
# Copy this so we don't modify the input array.
while
(
my
$string
=
shift
@$args
)
{
foreach
my
$string
(
@$args
)
{
my
$size
=
shift
@my_sizes
;
my
@pieces
=
split
(
"\n"
,
wrap_hard
(
$string
,
$size
));
push
(
@parts
,
\
@pieces
);
...
...
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