diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-22 06:51:42 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-22 06:51:42 +0000 |
commit | 28d2896f90888b5f0f24bd5b9f1ce8c8b5dbc2aa (patch) | |
tree | a6b249466793083f49b52827b0d493480ef76397 | |
parent | fddfd4b4133be1e4d9db303c7b95660671043aac (diff) | |
download | redmine-28d2896f90888b5f0f24bd5b9f1ce8c8b5dbc2aa.tar.gz redmine-28d2896f90888b5f0f24bd5b9f1ce8c8b5dbc2aa.zip |
Rails3: view: html_safe for issues/destroy.html.erb
Contributed by Eric Cline.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8312 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/destroy.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/destroy.html.erb b/app/views/issues/destroy.html.erb index 7f2f45562..7b9d7a9ca 100644 --- a/app/views/issues/destroy.html.erb +++ b/app/views/issues/destroy.html.erb @@ -1,7 +1,7 @@ <h2><%= l(:label_confirmation) %></h2> <% form_tag do %> -<%= @issues.collect {|i| hidden_field_tag 'ids[]', i.id } %> +<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join("\n").html_safe %> <div class="box"> <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p> <p> |