-
Bug
-
Resolution: Fixed
-
Low
-
4.4.1
-
4.04
-
The diff view in the changelog sent with email notifications is clumsy when accents are involved in the changes.
The reason is that the accents are considered by the diff tool as word separators, and not as part of words.
The correction is quite simple in jira-project/jira-components/jira-core/src/main/java/com/atlassian/diff/WordLevelDiffer.java : replace
Pattern.compile("[
p
_]+|\\S|(\r\n|\r|\n)") with Pattern.compile("[
p
p
_]+|\\S|(\r\n|\r|\n)") to match the non-ascii characters.
- is related to
-
JRASERVER-25574 Assignee characters are messed up in email
- Closed