added a html_safe to prevent xml escaping

pull/919/head
Jonas Heinrich 11 years ago committed by Sebastian Schuster
parent 4b97edc67f
commit 654964c399
  1. 2
      app/views/projects/destroy_info.html.erb

@ -33,7 +33,7 @@ See doc/COPYRIGHT.rdoc for more details.
<%=l(:text_project_destroy_confirmation)%>
<% if @project_to_destroy.descendants.any? %>
<br /><%= l(:text_subprojects_destroy_warning, content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))) %>
<br /><%= l(:text_subprojects_destroy_warning, content_tag('strong', h(@project_to_destroy.descendants.collect{|p| p.to_s}.join(', ')))).html_safe %>
<% end %>
</p>
<p>

Loading…
Cancel
Save