##// END OF EJS Templates
remove unneeded h() from app/views/issues/_list_simple.html.erb...
Toshi MARUYAMA -
r12540:c71432253040
parent child
Show More
@@ -15,9 +15,9
15 <%= link_to issue.id, issue_path(issue) %>
15 <%= link_to issue.id, issue_path(issue) %>
16 </td>
16 </td>
17 <td class="project"><%= link_to_project(issue.project) %></td>
17 <td class="project"><%= link_to_project(issue.project) %></td>
18 <td class="tracker"><%=h issue.tracker %></td>
18 <td class="tracker"><%= issue.tracker %></td>
19 <td class="subject">
19 <td class="subject">
20 <%= link_to truncate(issue.subject, :length => 60), issue_path(issue) %> (<%=h issue.status %>)
20 <%= link_to truncate(issue.subject, :length => 60), issue_path(issue) %> (<%= issue.status %>)
21 </td>
21 </td>
22 </tr>
22 </tr>
23 <% end %>
23 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now