diff --git a/app/views/common/_diff.html.erb b/app/views/common/_diff.html.erb index 3e03720f8..cf99967f7 100644 --- a/app/views/common/_diff.html.erb +++ b/app/views/common/_diff.html.erb @@ -23,11 +23,11 @@ <%= line.nb_line_left %> -
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line_left) %>
+
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line_left).html_safe %>
<%= line.nb_line_right %> -
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line_right) %>
+
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line_right).html_safe %>
<% end -%> @@ -54,7 +54,7 @@ <%= line.nb_line_left %> <%= line.nb_line_right %> -
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line) %>
+
<%= Redmine::CodesetUtil.to_utf8_by_setting(line.html_line).html_safe %>
<% end -%>