From: Toshi MARUYAMA Date: Wed, 24 Aug 2011 02:42:29 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/wikis/destroy.rhtml. X-Git-Tag: 1.3.0~1405 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=02909c1b8d108900dadfe2a240f55d642263f5cb;p=redmine.git rename .rhtml to .html.erb of app/views/wikis/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@6556 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/wikis/destroy.html.erb b/app/views/wikis/destroy.html.erb new file mode 100644 index 000000000..75c0eac24 --- /dev/null +++ b/app/views/wikis/destroy.html.erb @@ -0,0 +1,10 @@ +

<%=l(:label_confirmation)%>

+ +
+

<%= h(@project.name) %>
<%=l(:text_wiki_destroy_confirmation)%>

+ +<% form_tag({:controller => 'wikis', :action => 'destroy', :id => @project}) do %> +<%= hidden_field_tag "confirm", 1 %> +<%= submit_tag l(:button_delete) %> +<% end %> +
diff --git a/app/views/wikis/destroy.rhtml b/app/views/wikis/destroy.rhtml deleted file mode 100644 index 75c0eac24..000000000 --- a/app/views/wikis/destroy.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -

<%=l(:label_confirmation)%>

- -
-

<%= h(@project.name) %>
<%=l(:text_wiki_destroy_confirmation)%>

- -<% form_tag({:controller => 'wikis', :action => 'destroy', :id => @project}) do %> -<%= hidden_field_tag "confirm", 1 %> -<%= submit_tag l(:button_delete) %> -<% end %> -