From 5340a48253225383549ae471c845608f0923f296 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 1 Jan 2012 05:52:26 +0000 Subject: [PATCH] Rails3: view: html_safe for issue_moves/new.html.erb Contributed by Eric Cline. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8448 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issue_moves/new.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/issue_moves/new.html.erb b/app/views/issue_moves/new.html.erb index 743647ee0..68ebadcc1 100644 --- a/app/views/issue_moves/new.html.erb +++ b/app/views/issue_moves/new.html.erb @@ -7,7 +7,7 @@ <% form_tag({:action => 'create'}, :id => 'move_form') do %> -<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> +<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join("\n").html_safe %>