##// END OF EJS Templates
Rails3: view: html_safe for parents and children revisions...
Toshi MARUYAMA -
r7914:10ae93826e14
parent child
Show More
@@ -37,7 +37,7
37 37 <td>
38 38 <%= @changeset.parents.collect{
39 39 |p| link_to_revision(p, @project, :text => format_revision(p))
40 }.join(", ") %>
40 }.join(", ").html_safe %>
41 41 </td>
42 42 </tr>
43 43 <% end %>
@@ -47,7 +47,7
47 47 <td>
48 48 <%= @changeset.children.collect{
49 49 |p| link_to_revision(p, @project, :text => format_revision(p))
50 }.join(", ") %>
50 }.join(", ").html_safe %>
51 51 </td>
52 52 </tr>
53 53 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now