From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 15:19:01 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/issues/destroy.rhtml. X-Git-Tag: 1.3.0~944 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6201958753a4a1a49f7463731bb78573cfa7dd08;p=redmine.git rename .rhtml to .html.erb of app/views/issues/destroy.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7019 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/destroy.html.erb b/app/views/issues/destroy.html.erb new file mode 100644 index 000000000..7f2f45562 --- /dev/null +++ b/app/views/issues/destroy.html.erb @@ -0,0 +1,15 @@ +

<%= l(:label_confirmation) %>

+ +<% form_tag do %> +<%= @issues.collect {|i| hidden_field_tag 'ids[]', i.id } %> +
+

<%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %>

+

+
+
+ +<%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("todo_reassign").checked=true;' %> +

+
+<%= submit_tag l(:button_apply) %> +<% end %> diff --git a/app/views/issues/destroy.rhtml b/app/views/issues/destroy.rhtml deleted file mode 100644 index 7f2f45562..000000000 --- a/app/views/issues/destroy.rhtml +++ /dev/null @@ -1,15 +0,0 @@ -

<%= l(:label_confirmation) %>

- -<% form_tag do %> -<%= @issues.collect {|i| hidden_field_tag 'ids[]', i.id } %> -
-

<%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %>

-

-
-
- -<%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("todo_reassign").checked=true;' %> -

-
-<%= submit_tag l(:button_apply) %> -<% end %>