diff options
Diffstat (limited to 'app/views/trackers')
-rw-r--r-- | app/views/trackers/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/trackers/index.html.erb b/app/views/trackers/index.html.erb index ab6eba575..c4981ccd3 100644 --- a/app/views/trackers/index.html.erb +++ b/app/views/trackers/index.html.erb @@ -14,7 +14,7 @@ <tbody> <% for tracker in @trackers %> <tr class="<%= cycle("odd", "even") %>"> - <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td> + <td><%= link_to h(tracker.name), :action => 'edit', :id => tracker %></td> <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => 'workflows', :action => 'edit', :tracker_id => tracker} %>)</span><% end %></td> <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'edit', :id => tracker}) %></td> <td class="buttons"> |