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
08680add
Commit
08680add
authored
Nov 08, 2013
by
Simon Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 916633 - join_activity_entries doesn't reconstitute text with commas correctly.
r=glob, a=sgreen
parent
3d9a1253
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Util.pm
Bugzilla/Util.pm
+3
-2
No files found.
Bugzilla/Util.pm
View file @
08680add
...
...
@@ -496,8 +496,9 @@ sub join_activity_entries {
return
$current_change
.
$new_change
;
}
# All other fields get a space
if
(
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
# All other fields get a space unless the first character of the second
# string is a comma or space
if
(
substr
(
$new_change
,
0
,
1
)
eq
','
||
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
return
$current_change
.
$new_change
;
}
else
{
return
$current_change
.
' '
.
$new_change
;
...
...
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