From: Tom Hughes Date: Mon, 8 Jul 2013 08:48:31 +0000 (+0100) Subject: Fix incorrectly nested HTML in OAuth application creation form X-Git-Tag: live~4894 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/f2211a7ed9d55203d44081c6473d4077d66e9535?ds=sidebyside Fix incorrectly nested HTML in OAuth application creation form --- diff --git a/app/views/oauth_clients/new.html.erb b/app/views/oauth_clients/new.html.erb index a931cffe5..7542d77b5 100644 --- a/app/views/oauth_clients/new.html.erb +++ b/app/views/oauth_clients/new.html.erb @@ -4,8 +4,7 @@
<%= form_for :client_application, :url => { :action => :create } do |f| %> - <%= render :partial => "form", :locals => { :f => f } %> - <%= submit_tag t('oauth_clients.new.submit') %> + <%= render :partial => "form", :locals => { :f => f } %> + <%= submit_tag t('oauth_clients.new.submit') %> + <% end %>
- -<% end %>