remove unneeded h() from app/views/issues/_list_simple.html.erb

git-svn-id: http://svn.redmine.org/redmine/trunk@12815 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-02-05 08:54:28 +00:00
parent fb1055eb3f
commit c714322530
1 changed files with 2 additions and 2 deletions

View File

@ -15,9 +15,9 @@
<%= link_to issue.id, issue_path(issue) %>
</td>
<td class="project"><%= link_to_project(issue.project) %></td>
<td class="tracker"><%=h issue.tracker %></td>
<td class="tracker"><%= issue.tracker %></td>
<td class="subject">
<%= link_to truncate(issue.subject, :length => 60), issue_path(issue) %> (<%=h issue.status %>)
<%= link_to truncate(issue.subject, :length => 60), issue_path(issue) %> (<%= issue.status %>)
</td>
</tr>
<% end %>