From: Toshi MARUYAMA Date: Fri, 2 Sep 2011 04:17:32 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/users/_groups.rhtml. X-Git-Tag: 1.3.0~920 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c3c6e6f405ca00f016ab4f72f0eb149aaea96fdb;p=redmine.git rename .rhtml to .html.erb of app/views/users/_groups.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@7046 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/users/_groups.html.erb b/app/views/users/_groups.html.erb new file mode 100644 index 000000000..0ab2f11eb --- /dev/null +++ b/app/views/users/_groups.html.erb @@ -0,0 +1,9 @@ +<% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %> +
+<% Group.all.sort.each do |group| %> +
+<% end %> +<%= hidden_field_tag 'user[group_ids][]', '' %> +
+<%= submit_tag l(:button_save) %> +<% end %> diff --git a/app/views/users/_groups.rhtml b/app/views/users/_groups.rhtml deleted file mode 100644 index 0ab2f11eb..000000000 --- a/app/views/users/_groups.rhtml +++ /dev/null @@ -1,9 +0,0 @@ -<% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %> -
-<% Group.all.sort.each do |group| %> -
-<% end %> -<%= hidden_field_tag 'user[group_ids][]', '' %> -
-<%= submit_tag l(:button_save) %> -<% end %>