From: Toshi MARUYAMA Date: Wed, 24 Aug 2011 01:30:53 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/admin/_no_data.rhtml. X-Git-Tag: 1.3.0~1410 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0da83862b1421febcd9e05b6287d8ab94e5834c6;p=redmine.git rename .rhtml to .html.erb of app/views/admin/_no_data.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@6551 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/admin/_no_data.html.erb b/app/views/admin/_no_data.html.erb new file mode 100644 index 000000000..5d52dc059 --- /dev/null +++ b/app/views/admin/_no_data.html.erb @@ -0,0 +1,8 @@ +
+<% form_tag({:action => 'default_configuration'}) do %> + <%= simple_format(l(:text_no_configuration_data)) %> +

<%= l(:field_language) %>: + <%= select_tag 'lang', options_for_select(lang_options_for_select(false), current_language.to_s) %> + <%= submit_tag l(:text_load_default_configuration) %>

+<% end %> +
diff --git a/app/views/admin/_no_data.rhtml b/app/views/admin/_no_data.rhtml deleted file mode 100644 index 5d52dc059..000000000 --- a/app/views/admin/_no_data.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -
-<% form_tag({:action => 'default_configuration'}) do %> - <%= simple_format(l(:text_no_configuration_data)) %> -

<%= l(:field_language) %>: - <%= select_tag 'lang', options_for_select(lang_options_for_select(false), current_language.to_s) %> - <%= submit_tag l(:text_load_default_configuration) %>

-<% end %> -