Mercurial > hg > soundsoftware-site
changeset 1250:55a62689cc97 redmine-2.2-integration
printing the html correctly (not escaping it)
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 03 Apr 2013 15:55:50 +0100 |
parents | 774beb9b79da |
children | 9523dff58d3d |
files | plugins/redmine_tags/app/views/projects/_tags.html.erb |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/redmine_tags/app/views/projects/_tags.html.erb Wed Apr 03 15:31:16 2013 +0100 +++ b/plugins/redmine_tags/app/views/projects/_tags.html.erb Wed Apr 03 15:55:50 2013 +0100 @@ -2,6 +2,6 @@ <%= stylesheet_link_tag 'redmine_tags', :plugin => 'redmine_tags' %> <dl class="tags"> <dt class="tags-title"><%=l(:tags)%></dt> - <dd class="tags"><%= @project.tag_counts.collect{ |t| render_project_tag_link(t) }.join(', ') %></dd> + <dd class="tags"><%= raw @project.tag_counts.collect{ |t| render_project_tag_link(t) }.join(', ') %></dd> </dl> <% end %>