diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-01-01 05:52:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-01-01 05:52:26 +0000 |
commit | 5340a48253225383549ae471c845608f0923f296 (patch) | |
tree | 93e65f4a30dca0c294e52b0b3d578b9015773a3f /app/views | |
parent | 0fe8a4248d4db39f7612e467f98a6a6c6b576b63 (diff) | |
download | redmine-5340a48253225383549ae471c845608f0923f296.tar.gz redmine-5340a48253225383549ae471c845608f0923f296.zip |
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
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issue_moves/new.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ </ul> <% 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 %> <div class="box tabular"> <fieldset class="attributes"> |