Rails3: view: html_safe for parents and children revisions

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8034 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-12-03 06:15:03 +00:00
parent 3eb534818a
commit 10ae93826e
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
<td>
<%= @changeset.parents.collect{
|p| link_to_revision(p, @project, :text => format_revision(p))
}.join(", ") %>
}.join(", ").html_safe %>
</td>
</tr>
<% end %>
@ -47,7 +47,7 @@
<td>
<%= @changeset.children.collect{
|p| link_to_revision(p, @project, :text => format_revision(p))
}.join(", ") %>
}.join(", ").html_safe %>
</td>
</tr>
<% end %>