fix confirmation page has broken HTML when a project folding sub project is deleted.
Contributed by Haruka Yoshihara.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.0-stable@10084
e93f8b46-1217-0410-a6f0-
8f06a7374b81
<%=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>
assert_response :success
assert_template 'destroy'
assert_not_nil Project.find_by_id(1)
+ assert_tag :tag => 'strong',
+ :content => ['Private child of eCookbook',
+ 'Child of private child, eCookbook Subproject 1',
+ 'eCookbook Subproject 2'].join(', ')
end
def test_destroy