diff options
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r-- | app/views/auth_sources/edit.rhtml | 4 | ||||
-rw-r--r-- | app/views/auth_sources/new.rhtml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/auth_sources/edit.rhtml b/app/views/auth_sources/edit.rhtml index 149463e7f..165fd4f3e 100644 --- a/app/views/auth_sources/edit.rhtml +++ b/app/views/auth_sources/edit.rhtml @@ -1,7 +1,7 @@ <h2><%=l(:label_auth_source)%> (<%= @auth_source.auth_method_name %>)</h2> -<%= start_form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") %> +<% form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") do %> <%= render :partial => 'form' %> <%= submit_tag l(:button_save) %> -<%= end_form_tag %> +<% end %> diff --git a/app/views/auth_sources/new.rhtml b/app/views/auth_sources/new.rhtml index 29d66327b..2d493dc3a 100644 --- a/app/views/auth_sources/new.rhtml +++ b/app/views/auth_sources/new.rhtml @@ -1,6 +1,6 @@ <h2><%=l(:label_auth_source_new)%> (<%= @auth_source.auth_method_name %>)</h2> -<%= start_form_tag({:action => 'create'}, :class => "tabular") %> +<% form_tag({:action => 'create'}, :class => "tabular") do %> <%= render :partial => 'form' %> <%= submit_tag l(:button_create) %> -<%= end_form_tag %> +<% end %> |