From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 12:19:13 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/issue_categories/edit.rhtml. X-Git-Tag: 1.3.0~972 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=18bf1cec8d52bd87b0f6f6446cc2e28f1b0743cf;p=redmine.git rename .rhtml to .html.erb of app/views/issue_categories/edit.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@6991 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issue_categories/edit.html.erb b/app/views/issue_categories/edit.html.erb new file mode 100644 index 000000000..bc627797b --- /dev/null +++ b/app/views/issue_categories/edit.html.erb @@ -0,0 +1,6 @@ +

<%=l(:label_issue_category)%>

+ +<% labelled_tabular_form_for :category, @category, :url => { :action => 'edit', :id => @category } do |f| %> +<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> +<%= submit_tag l(:button_save) %> +<% end %> diff --git a/app/views/issue_categories/edit.rhtml b/app/views/issue_categories/edit.rhtml deleted file mode 100644 index bc627797b..000000000 --- a/app/views/issue_categories/edit.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -

<%=l(:label_issue_category)%>

- -<% labelled_tabular_form_for :category, @category, :url => { :action => 'edit', :id => @category } do |f| %> -<%= render :partial => 'issue_categories/form', :locals => { :f => f } %> -<%= submit_tag l(:button_save) %> -<% end %>